TypeScript/tests/baselines/reference/interfaceWithOptionalProperty.js

14 lines
200 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [interfaceWithOptionalProperty.ts]
interface I {
x?: number;
}
//// [interfaceWithOptionalProperty.js]
//// [interfaceWithOptionalProperty.d.ts]
interface I {
2014-07-12 01:36:06 +02:00
x?: number;
}