mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
13 lines
435 B
TypeScript
13 lines
435 B
TypeScript
export declare type Cookie = Record<string, string>;
|
|
export declare type CookieOptions = {
|
|
domain?: string;
|
|
expires?: Date;
|
|
httpOnly?: boolean;
|
|
maxAge?: number;
|
|
path?: string;
|
|
secure?: boolean;
|
|
signed?: boolean;
|
|
sameSite?: 'Strict' | 'Lax' | 'None';
|
|
};
|
|
export declare const parse: (cookie: string) => Cookie;
|
|
export declare const serialize: (name: string, value: string, opt?: CookieOptions) => string;
|