typedrequest-interfaces/ts/index.ts
2019-08-22 15:40:10 +02:00

10 lines
227 B
TypeScript

import * as plugins from './typedrequest-interfaces.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export interface ITypedRequest {
method: string;
request: object;
response: object;
}