@twilio-labs/serverless-runtime-types
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "@twilio-labs/serverless-runtime-types", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "TypeScript definitions to define globals for the Twilio Serverless runtime", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -16,6 +16,5 @@ import twilio from 'twilio'; | ||
export type Context = { | ||
export type Context<T = {}> = { | ||
getTwilioClient(): twilio.Twilio; | ||
DOMAIN_NAME: string; | ||
[key: string]: string; | ||
}; | ||
} & T; |
7002
29