export interface IFactory {
  make(options: any, ...args: any[]): any;
}
