typedrequest-interfaces/ts/index.ts
2019-08-22 15:41:49 +02:00

7 lines
154 B
TypeScript

import * as plugins from './typedrequest-interfaces.plugins';
export interface ITypedRequest {
method: string;
request: object;
response: object;
}