G-code Preview — API Reference
    Preparing search index...

    The slicer's own print-time estimate (#183) — the trustworthy figure for a time readout / time scrub, versus a kinematic estimate. Absent when the slicer doesn't emit it.

    interface PrintEstimate {
        mode?: string;
        seconds: number;
        source: { adapterId: string; evidence: string; srcByte?: number };
    }
    Index

    Properties

    Properties

    mode?: string

    Slicer mode label when given (e.g. PrusaSlicer 'normal' / 'silent').

    seconds: number

    Estimated print duration in seconds.

    source: { adapterId: string; evidence: string; srcByte?: number }