UNPKG

flagpole

Version:

Simple and fast DOM integration and REST API testing framework.

9 lines (8 loc) 387 B
import { iResponse, GenericResponse, SimplifiedResponse, ResponseType } from "./response"; import { Scenario } from "./scenario"; import { Node } from "./node"; export declare class ScriptResponse extends GenericResponse implements iResponse { constructor(scenario: Scenario, url: string, response: SimplifiedResponse); select(path: string): Node; getType(): ResponseType; }