export interface ICommonCallback { (error: null | undefined, data: T): void; (error: Error): void; }