@aws-amplify/core
Version:
Core category of aws-amplify
24 lines (23 loc) • 639 B
TypeScript
export interface KeyValueStorageInterface {
setItem(key: string, value: string): Promise<void>;
getItem(key: string): Promise<string | null>;
removeItem(key: string): Promise<void>;
clear(): Promise<void>;
}
export type SameSite = 'strict' | 'lax' | 'none';
export interface CookieStorageData {
domain?: string;
path?: string;
/**
* Expiration in days
*/
expires?: number;
secure?: boolean;
sameSite?: SameSite;
}
export interface SyncStorage {
setItem(key: string, value: string): void;
getItem(key: string): string | null;
removeItem(key: string): void;
clear(): void;
}