Files
interfaces/test/test.ts

11 lines
271 B
TypeScript

import { expect, tap } from '@git.zone/tstest/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();