/** * Created by pengf on 11/22/2017. */ export declare class BatchInfo { id?: number; name: string; status: string; loading: boolean; errorState: boolean; errorInfo: string; constructor(); } export declare function BathInfoChanges(batchInfo: BatchInfo, status: string, loading?: boolean, errStatus?: boolean, errorInfo?: string): BatchInfo; export declare enum BatchOperations { Idle = 0, Delete = 1, ChangeRole = 2 }