interface LabelledValue {
label: string;
}
1 可选属性
接口里的属性不全都是必需的。
有些是只在某些条件下存在,或者根本不存在。
带有可选属性的接口与普通的接口定
2022-11-04