export interface ICounter { set(): void | PromiseLike; get(): number; name: string; count: number; _increment(): number; }