mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
|
// @strictNullChecks: true
|
||
|
// @declaration: true
|
||
|
|
||
|
interface Foo {
|
||
|
required1: string;
|
||
|
required2: string;
|
||
|
optional?: string;
|
||
|
}
|
||
|
|
||
|
const foo1 = { required1: "hello" } as Foo;
|
||
|
const foo2 = { required1: "hello", optional: "bar" } as Foo;
|