aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/open.d.ts
blob: 89d4b762fbe7d04be96222b6f2a09570fda7930e (plain)
1
2
3
4
5
6
7
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;
}