export class zgSingleton{ static getInstance(this: new () => T): T { if(!(this).instance){ (this).instance = new this(); } return (this).instance; } }