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