@auth0/auth0-spa-js
Version:
Auth0 SDK for Single Page Applications using Authorization Code Grant Flow with PKCE
9 lines (8 loc) • 341 B
TypeScript
interface ClientStorageOptions {
daysUntilExpire: number;
}
export declare const getAllKeys: () => string[];
export declare const get: <T extends Object>(key: string) => T;
export declare const save: (key: string, value: any, options: ClientStorageOptions) => void;
export declare const remove: (key: string) => void;
export {};