Layout von Websiten mit Bootstrap und Foundation
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 249B

1234567891011121314
  1. /**
  2. List of binary file extensions.
  3. @example
  4. ```
  5. import binaryExtensions = require('binary-extensions');
  6. console.log(binaryExtensions);
  7. //=> ['3ds', '3g2', …]
  8. ```
  9. */
  10. declare const binaryExtensions: readonly string[];
  11. export = binaryExtensions;