UNPKG

@salte-auth/salte-auth

Version:
13 lines (12 loc) 405 B
import { Storage } from './storage'; export declare class CookieStorage extends Storage { /** * Determines if the current browser allows cookies. * @returns true if cookies aren't disabled. */ static supported(): boolean; get(name: string, defaultValue?: string): string; set(name: string, value: any): void; delete(name: string): void; clear(): void; }