Interface ClientEncryptionStore

interface ClientEncryptionStore {
    getStoredSession(userId): Promise<null | ClientEncryptionSession>;
    setStoredSession(session): Promise<void>;
    updateSyncToken(userId, token): Promise<void>;
}

Methods

Generated using TypeDoc