async-map-like
Version:
ES6 Map TypeScript Interface with Async Support
18 lines (13 loc) • 389 B
text/typescript
import { test } from 'tstest'
import type {
MapLike,
AsyncMapLike,
} from '../src/mod.js'
test('integrate testing', async t => {
let mapLike : undefined | MapLike<any, any>
let asyncMapLike : undefined | AsyncMapLike<any, any>
void mapLike
void asyncMapLike
t.pass('should imported typing')
})