Files
typedrequest-interfaces/ts/index.ts

7 lines
154 B
TypeScript
Raw Normal View History

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