Files
interfaces/test/test.ts

11 lines
271 B
TypeScript
Raw Normal View History

import { expect, tap } from '@git.zone/tstest/tapbundle';
2022-07-16 17:45:10 +02:00
import * as interfaces from '../ts/index.js';
2019-11-30 10:02:46 +00:00
tap.test('first test', async () => {
2021-03-08 17:30:04 +00:00
console.log(
2023-04-03 13:40:56 +02:00
'hi' as interfaces.requests.IRequest_CheckExchange['request']['checkCollection']['id']
2021-03-08 17:30:04 +00:00
);
2019-11-30 10:02:46 +00:00
});
tap.start();