UNPKG

flagpole

Version:

Simple and fast DOM integration, headless or headful browser, and REST API testing framework.

15 lines (14 loc) 549 B
import { iResponse } from "./interfaces"; import { Value } from "./value"; import { ProtoResponse } from "./response"; import { HttpResponse } from "./httpresponse"; import { ValuePromise } from "./value-promise"; import { ScenarioType } from "./scenario-types"; export declare class ScriptResponse extends ProtoResponse implements iResponse { get responseTypeName(): string; get responseType(): ScenarioType; init(httpResponse: HttpResponse): void; eval(): Promise<any>; find(): ValuePromise; findAll(): Promise<Value[]>; }