選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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;