Files
boc/vims-backend/node_modules/twilio/lib/http/response.d.ts
T

8 lines
197 B
TypeScript
Raw Normal View History

export default class Response<TPayload> {
statusCode: number;
body: TPayload;
headers: any;
constructor(statusCode: number, body: TPayload, headers: any);
toString(): string;
}