/** * In mobile Safari, the user may turn on "Block All Cookies". * In such situation, accessing to localStorage will throw error. */ type ListItemType = string | number | boolean; declare function get(key: string, validator?: T[]): T[]; interface Option { maxSize: number; actionOnDuplicate: "keep" | "reorder"; actionOnInsert: "start" | "end"; } declare function put(key: string, value: T, option?: Partial