interfaces/test/test.ts
2023-04-03 13:40:56 +02:00

11 lines
265 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as interfaces from '../ts/index.js';
tap.test('first test', async () => {
console.log(
'hi' as interfaces.requests.IRequest_CheckExchange['request']['checkCollection']['id']
);
});
tap.start();