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.

26 lines 597 B
import Plugin from './Plugin.js'; /** * MimeType. */ export default class MimeType { readonly description: string; readonly enabledPlugin: Plugin; readonly suffixes: string; readonly type: string; /** * Constructor. * * @param description * @param enabledPlugin * @param suffixes * @param type */ constructor(description: string, enabledPlugin: Plugin, suffixes: string, type: string); /** * Returns the object as a string. * * @returns String. */ toString(): string; } //# sourceMappingURL=MimeType.d.ts.map