mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 19:19:31 +08:00
14 lines
249 B
Text
14 lines
249 B
Text
/**
|
|
List of binary file extensions.
|
|
|
|
@example
|
|
```
|
|
import binaryExtensions = require('binary-extensions');
|
|
|
|
console.log(binaryExtensions);
|
|
//=> ['3ds', '3g2', …]
|
|
```
|
|
*/
|
|
declare const binaryExtensions: readonly string[];
|
|
|
|
export = binaryExtensions;
|