blob: 64150966417078c71883f60a5256b39ab945d55d [file] [log] [blame]
/**
List of standard HTML tags.
@example
```
import htmlTags = require('html-tags');
console.log(htmlTags);
//=> ['a', 'abbr', 'acronym', …]
```
*/
declare const htmlTags: readonly string[];
export = htmlTags;