interface IStatus {
    err?: string;
    status: "wait" | "process" | "finish" | "error";
}

Properties

Properties

err?: string
status: "wait" | "process" | "finish" | "error"