UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

12 lines (11 loc) 422 B
import net from "net"; import { ITTestResourceConfiguration } from "../lib"; import { PM_sidecar } from "./sidecar"; export declare class PM_Web_Sidecar extends PM_sidecar { testResourceConfiguration: ITTestResourceConfiguration; client: net.Socket; constructor(t: ITTestResourceConfiguration); start(): Promise<void>; stop(): Promise<void>; send<I>(command: string, ...argz: any[]): Promise<I>; }