TypeScript/tests/baselines/reference/interfaceWithOptionalProperty.types

9 lines
238 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/interfaceWithOptionalProperty.ts ===
interface I {
2015-04-13 23:01:57 +02:00
>I : I, Symbol(I, Decl(interfaceWithOptionalProperty.ts, 0, 0))
2014-08-15 23:33:16 +02:00
x?: number;
2015-04-13 23:01:57 +02:00
>x : number, Symbol(x, Decl(interfaceWithOptionalProperty.ts, 1, 13))
2014-08-15 23:33:16 +02:00
}