UNPKG

@iamsquare/cookie-parse

Version:
19 lines (18 loc) 387 B
export interface ParsedCookie { name: string; value: string; domain?: string; crossDomain?: boolean; path?: string; httpOnly?: boolean; secure?: boolean; https?: boolean; expires?: number; maxAge?: number; sameSite?: string; extension?: string[]; } export interface SplitStringOptions { skipTrim?: boolean; skipFilter?: boolean; }