Alokai

ContextedPlatformApi

type ContextedPlatformApi<T extends PlatformApi> = { [P in keyof T]: T[P] extends ((context: Context, ...arg: infer X) => Promise<any>) ? (...arg: X) => Promise<any> : never };

Referenced Types

On this page