mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
308 B
TypeScript
10 lines
308 B
TypeScript
// Type definitions for open 0.0.3
|
|
// Project: https://github.com/jjrdn/node-open
|
|
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module 'open' {
|
|
function open(target: string, app?: string): void;
|
|
export = open;
|
|
}
|