Home > @vsf-enterprise/bigcommerce-api > ContextualizedEndpoints
# ContextualizedEndpoints type
All available API Endpoints without first argument - context
, because this prop is set automatically.
Signature:
export declare type ContextualizedEndpoints = {
[T in keyof Endpoints]: Endpoints[T] extends (x: any, ...args: infer P) => infer R ? (...args: P) => R : never;
};
References: Endpoints