12 lines
539 B
TypeScript
12 lines
539 B
TypeScript
|
|
declare enum HTMLElementConfigContentModelEnum {
|
||
|
|
rawText = "rawText",
|
||
|
|
noSelfDescendants = "noSelfDescendants",
|
||
|
|
noFirstLevelSelfDescendants = "noFirstLevelSelfDescendants",
|
||
|
|
noForbiddenFirstLevelDescendants = "noForbiddenFirstLevelDescendants",
|
||
|
|
noDescendants = "noDescendants",
|
||
|
|
permittedDescendants = "permittedDescendants",
|
||
|
|
textOrComments = "textOrComments",
|
||
|
|
anyDescendants = "anyDescendants"
|
||
|
|
}
|
||
|
|
export default HTMLElementConfigContentModelEnum;
|
||
|
|
//# sourceMappingURL=HTMLElementConfigContentModelEnum.d.ts.map
|