mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 23:42:32 +01:00
fd22b0bf58
V2 (Laravel re-make)
15 lines
249 B
TypeScript
15 lines
249 B
TypeScript
/**
|
|
List of binary file extensions.
|
|
|
|
@example
|
|
```
|
|
import binaryExtensions = require('binary-extensions');
|
|
|
|
console.log(binaryExtensions);
|
|
//=> ['3ds', '3g2', …]
|
|
```
|
|
*/
|
|
declare const binaryExtensions: readonly string[];
|
|
|
|
export = binaryExtensions;
|