-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Description
https://ts.xcatliu.com/basics/type-of-object-interfaces.html
interface Person {
name: string;
age?: number;
}
let tom: Person = {
name: 'Tom',
age: 25,
gender: 'male'
};
我运行了不报错。
ts 编译器版本:Version 4.5.5
Metadata
Metadata
Assignees
Labels
No labels