@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface SyncErrorEvent

    error event — an action threw or the engine encountered a fatal condition. Always carries a non-empty message describing the failure so consumers don't need a message ?? 'unknown' fallback.

    interface SyncErrorEvent {
        message: string;
        path: string;
        size: number;
        type: "error";
    }
    Index

    Properties

    Properties

    message: string

    Human-readable error message; never empty.

    path: string

    Relative path of the file the failed action targeted, or '' for engine-level errors.

    size: number

    Size in bytes; always 0 for error events.

    type: "error"

    Discriminant tag (always the literal string 'error').