scrapbook.qujck.com
C# style object initialisation in TypeScript
@RoutingKey(‘abc’) class Foo { public name: string | undefined; public age: number | undefined; public gender: string | undefined; constructor(init?: Partial) { if (init) { O…