"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SingletonMixin = void 0;
class SingletonMixin {
static getInstance() {
if (!this.instance) {
this.instance = new this();
}
return this.instance;
}
}
exports.SingletonMixin = SingletonMixin;