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.

17 lines 456 B
import Event from '../Event.cjs'; import IMediaQueryListInit from './IMediaQueryListInit.cjs'; /** * */ 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