UNPKG

@theintern/digdug

Version:

Dig Dug. A simple abstraction library for downloading and launching WebDriver service tunnels.

11 lines (10 loc) 403 B
import { CancellablePromise } from '@theintern/common'; import Tunnel, { TunnelProperties } from './Tunnel'; export default class NullTunnel extends Tunnel { constructor(options?: Partial<TunnelProperties>); get isDownloaded(): boolean; download(): CancellablePromise<void>; start(): CancellablePromise<void>; stop(): Promise<number>; sendJobState(): CancellablePromise<void>; }