aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-binary-path/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/is-binary-path/index.d.ts')
-rw-r--r--node_modules/is-binary-path/index.d.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/is-binary-path/index.d.ts b/node_modules/is-binary-path/index.d.ts
deleted file mode 100644
index 19dcd43..0000000
--- a/node_modules/is-binary-path/index.d.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
-Check if a file path is a binary file.
-
-@example
-```
-import isBinaryPath = require('is-binary-path');
-
-isBinaryPath('source/unicorn.png');
-//=> true
-
-isBinaryPath('source/unicorn.txt');
-//=> false
-```
-*/
-declare function isBinaryPath(filePath: string): boolean;
-
-export = isBinaryPath;