node-liblzma - v4.0.2
    Preparing search index...

    Variable LZMAStatusConst

    LZMAStatus: {
        BUF_ERROR: any;
        DATA_ERROR: any;
        FORMAT_ERROR: any;
        GET_CHECK: any;
        MEM_ERROR: any;
        MEMLIMIT_ERROR: any;
        NO_CHECK: any;
        OK: any;
        OPTIONS_ERROR: any;
        PROG_ERROR: any;
        STREAM_END: any;
        UNSUPPORTED_CHECK: any;
    } = ...

    LZMA operation status/return codes. Used to indicate the result of encoding/decoding operations.

    Type Declaration

    • ReadonlyBUF_ERROR: any

      No progress is possible (input/output buffers full)

    • ReadonlyDATA_ERROR: any

      Data is corrupt

    • ReadonlyFORMAT_ERROR: any

      File format not recognized

    • ReadonlyGET_CHECK: any

      Integrity check type is now available

    • ReadonlyMEM_ERROR: any

      Cannot allocate memory

    • ReadonlyMEMLIMIT_ERROR: any

      Memory usage limit was reached

    • ReadonlyNO_CHECK: any

      Input stream has no integrity check

    • ReadonlyOK: any

      Operation completed successfully

    • ReadonlyOPTIONS_ERROR: any

      Invalid or unsupported options

    • ReadonlyPROG_ERROR: any

      Programming error in caller

    • ReadonlySTREAM_END: any

      End of stream was reached

    • ReadonlyUNSUPPORTED_CHECK: any

      Cannot verify the integrity check type