typedrequest-interfaces/test/test.ts

19 lines
383 B
TypeScript
Raw Normal View History

2023-08-03 19:18:25 +00:00
import { expect, tap } from '@push.rocks/tapbundle';
2022-10-26 09:35:19 +00:00
import * as typedrequestInterfaces from '../ts/index.js';
2019-08-22 13:40:10 +00:00
2020-02-10 21:08:52 +00:00
interface IRequestSample
extends typedrequestInterfaces.implementsTR<
typedrequestInterfaces.ITypedRequest,
IRequestSample
> {
2020-02-10 21:06:51 +00:00
method: 'hey';
request: {};
response: {};
}
2019-08-22 13:40:10 +00:00
tap.test('first test', async () => {
2019-08-23 14:57:45 +00:00
typedrequestInterfaces;
2019-08-22 13:40:10 +00:00
});
tap.start();