@twilio-labs/serverless-runtime-types
Advanced tools
Comparing version
@@ -1,6 +0,5 @@ | ||
import TwilioLib = require('twilio'); | ||
import { RuntimeInstance } from './types'; | ||
import { RuntimeInstance, TwilioResponse, GlobalTwilio } from './types'; | ||
declare global { | ||
var Twilio: typeof TwilioLib; | ||
var Twilio: GlobalTwilio; | ||
var Runtime: RuntimeInstance; | ||
@@ -10,3 +9,3 @@ | ||
interface Global { | ||
Twilio: typeof TwilioLib; | ||
Twilio: GlobalTwilio; | ||
Runtime: RuntimeInstance; | ||
@@ -13,0 +12,0 @@ } |
{ | ||
"name": "@twilio-labs/serverless-runtime-types", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "TypeScript definitions to define globals for the Twilio Serverless runtime", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,2 +0,2 @@ | ||
import twilio from 'twilio'; | ||
import * as twilio from 'twilio'; | ||
import { ServiceContext } from 'twilio/lib/rest/sync/v1/service'; | ||
@@ -14,2 +14,9 @@ | ||
export interface TwilioResponse { | ||
setStatusCode(code: number): void; | ||
setBody(body: string | object): void; | ||
appendHeader(key: string, value: string): void; | ||
setHeaders(headers: { [key: string]: string }): void; | ||
} | ||
export type RuntimeInstance = { | ||
@@ -39,1 +46,6 @@ getAssets(): ResourceMap; | ||
) => void | Promise<void>; | ||
export type ResponseConstructor = new (...args: any[]) => TwilioResponse; | ||
export type GlobalTwilio = Omit<typeof twilio, 'default'> & { | ||
Response: ResponseConstructor; | ||
}; |
7751
5.18%53
20.45%