export namespace main { export class Food { static createFrom(source: any = {}) { return new Food(source); } constructor(source: any = {}) { if ('string' === typeof source) source = JSON.parse(source); } } }