Type Alias OsProgressBeta

OsProgress: {
    job_type?: string;
    key: string;
    label?: ReactNode;
    status?:
        | "active"
        | "success"
        | "exception"
        | "normal";
}

Type for progress information.

Type declaration

  • Optional Betajob_type?: string

    Type of job for the progress item.

  • Betakey: string

    Key for the progress item.

  • Optional Betalabel?: ReactNode

    Label for the progress item.

  • Optional Betastatus?:
        | "active"
        | "success"
        | "exception"
        | "normal"

    Status of the progress item.