AppleSauce
    Preparing search index...

    Interface EncryptedContentCache

    An interface that is used to cache encrypted content on events

    interface EncryptedContentCache {
        getItem: (key: string) => Promise<null | string>;
        setItem: (key: string, value: string) => Promise<any>;
    }
    Index

    Properties

    Properties

    getItem: (key: string) => Promise<null | string>
    setItem: (key: string, value: string) => Promise<any>