typedrequest-interfaces/test/test.ts
2020-02-10 21:08:52 +00:00

19 lines
379 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as typedrequestInterfaces from '../ts/index';
interface IRequestSample
extends typedrequestInterfaces.implementsTR<
typedrequestInterfaces.ITypedRequest,
IRequestSample
> {
method: 'hey';
request: {};
response: {};
}
tap.test('first test', async () => {
typedrequestInterfaces;
});
tap.start();