export interface IProcessor { preProcess?(name: string, object: any): any | Promise; postProcess?(name: string, object: T): void | Promise; }