@camptocamp/inkmap
    Preparing search index...

    Interface PrintStatus

    interface PrintStatus {
        errors: PrintError[];
        id: number;
        imageBlob: Blob;
        progress: number;
        spec: PrintSpec;
        status: "pending" | "ongoing" | "finished" | "canceled";
    }
    Index

    Properties

    errors: PrintError[]

    Errors encountered so far during the job, if any; empty if no error.

    id: number

    Job id.

    imageBlob: Blob

    Finished image blob; null if not finished or canceled

    progress: number

    Job progress, from 0 to 1.

    spec: PrintSpec

    Job initial spec.

    status: "pending" | "ongoing" | "finished" | "canceled"

    Job status.