UNPKG

azure-functions-ts-essentials

Version:

Essential interfaces and tools for backend development on Azure Functions with TypeScript

17 lines (16 loc) 328 B
import { HttpMethod } from './http-method'; export interface HttpRequest { originalUrl?: string; method: HttpMethod; query?: { [key: string]: any; }; headers?: { [key: string]: any; }; body?: any; params?: { [key: string]: any; }; rawBody?: any; }