/// import * as http from "http"; import { TwirpContentType } from "./request"; export interface TwirpContext { readonly packageName: string; readonly serviceName: string; readonly methodName: string; readonly contentType: TwirpContentType; readonly req: Request; readonly res: Response; }