interface ProvisioningStore {
    createSession(session): void | Promise<void>;
    deleteAllSessions(userId): void | Promise<void>;
    deleteSession(token): void | Promise<void>;
    getSessionForToken(token): null | ProvisionSession | Promise<null | ProvisionSession>;
}

Implemented by

Methods

Generated using TypeDoc