TypeScript/tests/baselines/reference/libTypeScriptOverrideSimple.types

20 lines
455 B
Plaintext

=== /node_modules/@typescript/lib-dom/index.d.ts ===
interface ABC { abc: string }
>abc : string
=== tests/cases/compiler/index.ts ===
/// <reference lib="dom" />
const a: ABC = { abc: "Hello" }
>a : ABC
>{ abc: "Hello" } : { abc: string; }
>abc : string
>"Hello" : "Hello"
// This should fail because libdom has been replaced
// by the module above ^
window.localStorage
>window.localStorage : any
>window : any
>localStorage : any