UNPKG

@dominicstop/utils

Version:

Yet another event emitter written in typescript.

11 lines (6 loc) 165 B
export interface Cloneable<Self> extends SomeCloneable<Self> { clone(): Self | this; }; export interface SomeCloneable<T = unknown> { clone(): this | T; };