力皓 66d43f2103 fix: convertI18nObject
fix: initialChildren 传入 settingTopEntry 参数
2020-10-16 17:31:02 +08:00

10 lines
190 B
TypeScript

export class DocumentModel {
a = 1;
c = {};
constructor() {
console.log('xxxxxxxxxxxxxxxxxxxx');
const b = { x: { y: 2 } };
const c: number = 2;
this.a = b?.x?.y;
}
}