lix-website/themes/lix/assets/bootstrap/node_modules/html-tags/void.d.ts

34 lines
492 B
TypeScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
declare namespace htmlTagsVoid {
export type htmlTagsVoid =
| 'area'
| 'base'
| 'br'
| 'col'
| 'embed'
| 'hr'
| 'img'
| 'input'
| 'link'
| 'menuitem'
| 'meta'
| 'param'
| 'source'
| 'track'
| 'wbr'
}
/**
List of standard, self-closing HTML tags.
@example
```
import htmlTags = require('html-tags/void');
console.log(htmlTags);
//=> ['a', 'abbr', 'acronym' …]
```
*/
declare const htmlTagsVoid: readonly htmlTagsVoid.htmlTagsVoid[];
export = htmlTagsVoid;