interface ErrModel { url: string; operatorType?: number | string; code: number | string; msg: number | string; origin?: any; } declare class ErrFactory { url: string; operatorType?: number | string; code: number | string; msg: number | string; origin: any; constructor(data: ErrModel); } export default ErrFactory;