export interface ValidatorListItem {
    id?: string;
    title: string;
    msg?: string;
    type: string;
}
export interface ErrorListsItem {
    list: ValidatorListItem[];
    show: boolean;
    type: string;
}
export interface TabListItem {
    id?: string;
    type: string;
    title: string;
    active?: boolean;
    length?: number;
    iconCls?: string;
    iconStyle?: string;
}
export interface VerifyTypeItem {
    id: string;
    type: string;
    title: string;
}
