typedrequest-interfaces/ts/index.ts
2019-08-23 16:57:45 +02:00

6 lines
92 B
TypeScript

export interface ITypedRequest {
method: string;
request: object;
response: object;
}