happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
13 lines • 336 B
TypeScript
/**
* Options for CookieStore.set().
*/
export default interface ICookieStoreSetOptions {
name: string;
value?: string;
domain?: string | null;
expires?: number | Date | null;
path?: string;
sameSite?: 'strict' | 'lax' | 'none';
partitioned?: boolean;
}
//# sourceMappingURL=ICookieStoreSetOptions.d.ts.map