pcsc-mini - v0.1.2
    Preparing search index...

    Interface Err

    Error type thrown/rejected from native API calls and emitted by the reader state background monitoring thread.

    interface Err {
        cause?: unknown;
        code: string;
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy

    • Error
      • Err
    Index

    Properties

    cause?: unknown
    code: string

    The associated error code. This may originate from pcsc-mini, the underlying PCSC implementation, or the Node-API.

    message: string
    name: string
    stack?: string