mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-17 09:56:19 +00:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
|
|
declare class Singletons {
|
||
|
|
static enforce<T>(candidate: {
|
||
|
|
new (): T;
|
||
|
|
}): Function;
|
||
|
|
static enforce(candidate: Function): Function;
|
||
|
|
}
|
||
|
|
export default Singletons;
|