export interface ITitle {
    title?: string;
    success?: (success: any) => void;
    fail?: (error: any) => void;
    complete?: (msg: any) => void;
}
