UNPKG

@ksjogo/azure-functions-typescript

Version:

Helper library for using TypeScript with Azure Functions

10 lines (8 loc) 222 B
import {IFunctionResponse} from './http' export interface IContext { invocationId: string bindingData: any bindings: any[] log (...text: any[]): void done (err ?: any, res?: IFunctionResponse): void }