TypeScript/tests/cases/compiler/interfaceWithOptionalProperty.ts
2014-07-12 17:30:19 -07:00

5 lines
58 B
TypeScript

// @declaration: true
interface I {
x?: number;
}