19 lines
603 B
TypeScript
19 lines
603 B
TypeScript
|
|
import HTMLElementConfigContentModelEnum from './HTMLElementConfigContentModelEnum.js';
|
||
|
|
/**
|
||
|
|
* @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
|