Skip to content

Commit

Permalink
Added stopChild and relaunch to type declaration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandro Díaz Guerra committed Sep 24, 2019
1 parent 3447e66 commit a60ceaa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ export interface InstallerConfig {
}

export function configureInstaller(config: InstallerConfig): void;
export function launch(portNumber: number, dbPath?: string | null, args?: argValues[], verbose?: boolean, detatched?: any, javaOpts?: string): Promise<ChildProcess>;
export function launch(portNumber: number, dbPath?: string | null, args?: argValues[], verbose?: boolean, detached?: any, javaOpts?: string): Promise<ChildProcess>;
export function stop(portNumber: number): void;
export function stopChild(child: ChildProcess): void;
export function relaunch(portNumber: number, dbPath?:string): void;

0 comments on commit a60ceaa

Please sign in to comment.