forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/html-tags/index.d.ts

15 lines
215 B
TypeScript

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