@auth0/auth0-spa-js
Version:
Auth0 SDK for Single Page Applications using Authorization Code Grant Flow with PKCE
13 lines (12 loc) • 446 B
TypeScript
import { ICache, KeyManifestEntry, MaybePromise } from './shared';
export declare class CacheKeyManifest {
private cache;
private clientId;
private readonly manifestKey;
constructor(cache: ICache, clientId: string);
add(key: string): Promise<void>;
remove(key: string): Promise<void>;
get(): MaybePromise<KeyManifestEntry | undefined>;
clear(): MaybePromise<void>;
private createManifestKeyFrom;
}