UNPKG

insite-cookie

Version:

Cookie support for inSite

11 lines 280 B
export type Cookie = Record<string, string>; export type CookieOptions = { maxAge?: number; expiresAt?: Date; domain?: string; path?: false | string | null; secure?: boolean; httpOnly?: boolean; sameSite?: string; }; //# sourceMappingURL=types.d.ts.map