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.
11 lines (9 loc) • 305 B
text/typescript
import type IEventInit from '../IEventInit.js';
import type ICookieStoreItem from '../../cookie-store/ICookieStoreItem.js';
/**
* Init options for CookieChangeEvent.
*/
export default interface ICookieChangeEventInit extends IEventInit {
changed?: ICookieStoreItem[];
deleted?: ICookieStoreItem[];
}