export class Context { public context: Partial; constructor(public parent?: Context) { this.context = Object.create(parent?.context || {}); } getChild(): Context { return new Context(this); } }