index.d.ts 249 B

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;