1.0.0 • Published 8 months ago

hys-singleton-class v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

hys-singleton-class

安装依赖

npm install --save hys-singleton-class

测试代码

import { SingletonClass } from "hys-singleton-class";

class Test extends SingletonClass {
    constructor(public name: string) {
        super(name);
    }

    show(): void {
        console.log("show:", this.name);
    }
}

let instance1 = Test.getInstance("hys1") as Test;
let instance2 = Test.getInstance("hys2") as Test;
instance1.show();
instance2.show();
1.0.0

8 months ago