AppleSauce
    Preparing search index...

    Interface DecryptionCache

    An interface for caching decrypted content of events

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

    Methods