typedrequest-interfaces/test/test.ts
2023-08-03 21:18:25 +02:00

19 lines
383 B
TypeScript

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