export interface CallBack { success?: (res?: any) => any; fail?: (res?: any) => any; complete?: (res?: any) => any; } export interface PARAMS extends CallBack { text: string; } export interface RESPONES { text: string; }