export type StorageCookieSetOptions = { // 键 key: string // 值 value: string // 过期时间 expires?: string | Date | number // 路径 path?: string // 域名 domain?: string // 是否加密 encrypt?: boolean } export type StorageCookieRemoveOptions = { // 路径 path?: string // 域名 domain?: string }