TypeScript/tests/baselines/reference/interfaceWithOptionalProperty.js
2014-07-15 13:08:10 -07:00

14 lines
200 B
TypeScript

//// [interfaceWithOptionalProperty.ts]
interface I {
x?: number;
}
//// [interfaceWithOptionalProperty.js]
//// [interfaceWithOptionalProperty.d.ts]
interface I {
x?: number;
}