Files
Selenium_test_website/node_modules/geckodriver/lib/geckodriver.d.ts

13 lines
292 B
TypeScript
Raw Normal View History

2023-03-06 14:23:39 +07:00
/// <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 const defaultInstance: ChildProcess | undefined;