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.
19 lines • 604 B
TypeScript
import HTMLElementConfigContentModelEnum from './HTMLElementConfigContentModelEnum.cjs';
/**
* @see https://html.spec.whatwg.org/multipage/indices.html
*/
declare const _default: {
[key: string]: {
className: string;
contentModel: HTMLElementConfigContentModelEnum;
forbiddenDescendants?: string[];
permittedDescendants?: string[];
permittedParents?: string[];
addPermittedParent?: string;
moveForbiddenDescendant?: {
exclude: string[];
};
};
};
export default _default;
//# sourceMappingURL=HTMLElementConfig.d.ts.map