Interface ISimulationTask

    interface ISimulationTask {
        datas?: ISimulationTaskData[];
        error?: string;
        file?: ISimulationTaskFile;
        files?: ISimulationTaskFile[];
        index: number;
        label: string;
        link?: {
            href: string;
            label: string;
        };
        log?: string;
        pid?: string | number;
        plugin?: string;
        pluginLog?: string;
        status: "wait" | "process" | "finish" | "error";
        systemLog?: string;
        warning?: string;
    }

    Hierarchy (view full)

    Properties

    error?: string
    index: number
    label: string
    link?: {
        href: string;
        label: string;
    }

    Type declaration

    • href: string
    • label: string
    log?: string
    pid?: string | number
    plugin?: string
    pluginLog?: string
    status: "wait" | "process" | "finish" | "error"
    systemLog?: string
    warning?: string

    Generated using TypeDoc and TypeDoc Airthium Plugin