UNPKG

happy-dom-without-node

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.

17 lines 454 B
import Event from '../Event.js'; import IMediaQueryListInit from './IMediaQueryListInit.js'; /** * */ export default class MediaQueryListEvent extends Event { readonly matches: boolean; readonly media: string; /** * Constructor. * * @param type Event type. * @param [eventInit] Event init. */ constructor(type: string, eventInit?: IMediaQueryListInit | null); } //# sourceMappingURL=MediaQueryListEvent.d.ts.map