UNPKG

@types/chromedriver

Version:
14 lines (8 loc) 422 B
/// <reference types="node" /> import { ChildProcess } from "child_process"; export const path: string; export const version: string; export function start(args: readonly string[] | null | undefined, returnPromise: true): Promise<ChildProcess>; export function start(args?: readonly string[], returnPromise?: false): ChildProcess; export function stop(): void; export const defaultInstance: ChildProcess | undefined;