mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 03:01:16 +00:00
10 lines
142 B
TypeScript
10 lines
142 B
TypeScript
export class Node2 {
|
|
a = 1;
|
|
c = {};
|
|
constructor() {
|
|
const b = { x: { y: 2 } };
|
|
const c: number = 2;
|
|
this.a = b?.x?.y;
|
|
}
|
|
}
|