aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/open.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/typings/open.d.ts')
-rw-r--r--tools/typings/open.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/typings/open.d.ts b/tools/typings/open.d.ts
new file mode 100644
index 0000000..89d4b76
--- /dev/null
+++ b/tools/typings/open.d.ts
@@ -0,0 +1,8 @@
+// https://github.com/borisyankov/DefinitelyTyped/tree/master/open
+// Does not support ES2015 import (import * as open from 'open').
+
+declare module 'open' {
+ function open(target: string, app?: string): void;
+ module open {}
+ export = open;
+}