typedrequest-interfaces/ts/index.ts

7 lines
154 B
TypeScript
Raw Normal View History

2019-08-22 13:40:10 +00:00
import * as plugins from './typedrequest-interfaces.plugins';
export interface ITypedRequest {
method: string;
request: object;
response: object;
}