UNPKG

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 (12 loc) 263 B
/** * 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; }