mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
import { check } from 'agadoo';
|
|
|
|
(async () => {
|
|
// $ExpectType Result
|
|
await check('./some-module.js');
|
|
|
|
// @ts-expect-error
|
|
await check(123);
|
|
})();
|