81.0.5 • Published 1 year ago
@types/chromedriver v81.0.5
Installation
npm install --save @types/chromedriver
Summary
This package contains type definitions for chromedriver (https://github.com/giggio/node-chromedriver).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chromedriver.
index.d.ts
// Type definitions for chromedriver 81.0
// 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> | null | undefined, returnPromise: true): Promise<ChildProcess>;
export function start(args?: ReadonlyArray<string>, returnPromise?: false): ChildProcess;
export function stop(): void;
export const defaultInstance: ChildProcess | undefined;
Additional Details
- Last updated: Thu, 23 Dec 2021 23:34:23 GMT
- Dependencies: @types/node
- Global values: none
Credits
These definitions were written by Peter Safranek.