mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
515 B
TypeScript
15 lines
515 B
TypeScript
// Type definitions for chromedriver 2.38
|
|
// Project: https://github.com/giggio/node-chromedriver
|
|
// Definitions by: Peter Safranek <https://github.com/pe8ter>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
import { ChildProcess } from 'child_process';
|
|
|
|
export const path: string;
|
|
export const version: string;
|
|
export function start(args?: ReadonlyArray<string>): ChildProcess;
|
|
export function stop(): void;
|
|
export let defaultInstance: ChildProcess | undefined;
|