UNPKG

215 BTypeScriptView Raw
1/**
2List of standard HTML tags.
3
4@example
5```
6import htmlTags = require('html-tags');
7
8console.log(htmlTags);
9//=> ['a', 'abbr', 'acronym', …]
10```
11*/
12declare const htmlTags: readonly string[];
13
14export = htmlTags;