@regulaforensics/document-reader
    Preparing search index...

    Type Alias RFIDCompletion

    RFIDCompletion: (
        action: DocReaderAction,
        results: Results | null,
        error: RFIDException | null,
    ) => void

    Callback for receiving answer from processing engine.

    Type Declaration

      • (
            action: DocReaderAction,
            results: Results | null,
            error: RFIDException | null,
        ): void
      • Parameters

        • action: DocReaderAction

          defines current processing status.

        • results: Results | null

          defines current processing results.

        • error: RFIDException | null

          in case of anything is wrong - brief message for developer, null otherwise.

        Returns void