UNPKG

245 BTypeScriptView Raw
1/**
2List of void (self-closing) HTML tags.
3
4@example
5```
6import voidHtmlTags = require('html-tags/void');
7
8console.log(voidHtmlTags);
9//=> ['area', 'base', 'br', …]
10```
11*/
12declare const voidHtmlTags: readonly string[];
13
14export = voidHtmlTags;