export interface IRepository { estimate(): Promise; truncate(): Promise; insert(item: any | any[]): Promise; update(item: any | any[]): Promise; }