TypeScript/tests/baselines/reference/tslibInJs.types
Ron Buckton ec4863cc0e
Fix37991 (#43166)
* Add failing test

* Fix tslib check errors for commonjs imports
2021-03-09 11:43:19 -08:00

11 lines
187 B
Plaintext

=== tests/cases/compiler/main.js ===
"use strict";
>"use strict" : "use strict"
const { foo } = require("bar");
>foo : any
>require("bar") : any
>require : any
>"bar" : "bar"