Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 215B

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