1.0.7 • Published 2 years ago

@jswork/next-stub-singleton v1.0.7

Weekly downloads
54
License
MIT
Repository
-
Last release
2 years ago

next-stub-singleton

Stub code for singleton.

version license size download

installation

yarn add @jswork/next-stub-singleton

usage

import "@jswork/next-stub-singleton";

class Person {
  constructor(public name) {
    this.name = name;
  }
}

Object.assign(Person, nx.stubSingleton());

const app = (Person as unknown as SingletonType).getInstance("abc");

console.log(app);

license

Code released under the MIT license.