TypeScript/tests/baselines/reference/interfaceWithOptionalProperty.types

9 lines
123 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/interfaceWithOptionalProperty.ts ===
interface I {
>I : I
2014-08-15 23:33:16 +02:00
x?: number;
>x : number
2014-08-15 23:33:16 +02:00
}