blob: dfecb4754f680a95a426f080f6442d467b9f6a38 [file] [log] [blame]
/**
List of void (self-closing) HTML tags.
@example
```
import voidHtmlTags = require('html-tags/void');
console.log(voidHtmlTags);
//=> ['area', 'base', 'br', …]
```
*/
declare const voidHtmlTags: readonly string[];
export = voidHtmlTags;