UNPKG

@yandex-cloud/function-types

Version:

TypeScript typings for Serverless Functions in Yandex.Cloud

15 lines (14 loc) 327 B
interface Context { functionName: string; functionVersion: string; memoryLimitInMB: string; requestId: string; token?: { access_token: string; expires_in: number; token_type: string; }; getPayload(): unknown; getRemainingTimeInMillis(): number; } export default Context;