AppleSauce
    Preparing search index...

    Interface DecryptionCache

    An interface for caching decrypted content of events

    interface DecryptionCache {
        getContent(event: NostrEvent): Promise<string>;
        setContent(event: NostrEvent, content: string): Promise<void>;
    }
    Index

    Methods