/// import { APIClient } from '@heroku-cli/command'; import { IOptions } from '@heroku-cli/command/lib/api-client'; import { Dyno as APIDyno } from '@heroku-cli/schema'; import { HTTP } from 'http-call'; import * as net from 'net'; import { Duplex } from 'stream'; import * as tls from 'tls'; import * as url from 'url'; interface HerokuApiClientRun extends APIClient { options: IOptions & { rejectUnauthorized?: boolean; }; } interface DynoOpts { 'exit-code'?: boolean; 'no-tty'?: boolean; app: string; attach?: boolean; command: string; dyno?: string; env?: string; heroku: APIClient; listen?: boolean; notify?: boolean; showStatus?: boolean; size?: string; type?: string; } export default class Dyno extends Duplex { opts: DynoOpts; readonly _useSSH: boolean; dyno?: APIDyno; heroku: HerokuApiClientRun; input: any; p: any; reject?: (reason?: any) => void; resolve?: (value?: unknown) => void; uri?: url.UrlWithStringQuery; unpipeStdin: any; useSSH: any; private _notified?; private _startedAt?; constructor(opts: DynoOpts); /** * Starts the dyno */ start(): Promise; _doStart(retries?: number): Promise>; /** * Attaches stdin/stdout to dyno */ attach(): any; _rendezvous(): Promise; _ssh(retries?: number): Promise; _connect(): Promise; _handle(localServer: net.Server): void; _isDebug(): boolean; _env(): { [key: string]: any; }; _status(status: any): string; _readData(c?: tls.TLSSocket): (data: any) => void; _readStdin(c: any): void; _read(): void; _write(chunk: any, encoding: any, callback: any): void; _notify(): void; } export {};