Encrypted Pouch - v0.2.1
    Preparing search index...

    Interface DecryptionErrorEvent

    Information about a decryption error

    interface DecryptionErrorEvent {
        kind: "decrypt";
        docId: string;
        error: Error;
        rawDoc: any;
    }
    Index

    Properties

    Properties

    kind: "decrypt"

    Discriminator for the error event kind

    docId: string

    Full PouchDB document ID (table_id format)

    error: Error

    The error that occurred during decryption

    rawDoc: any

    The raw encrypted document from PouchDB