flagpole
Version:
Simple and fast DOM integration and REST API testing framework.
12 lines (11 loc) • 477 B
TypeScript
import { iResponse, SimplifiedResponse, GenericResponse, ResponseType } from "./response";
import { Scenario } from "./scenario";
import { Node } from "./node";
export declare class JsonResponse extends GenericResponse implements iResponse {
protected json: {};
constructor(scenario: Scenario, url: string, response: SimplifiedResponse);
getType(): ResponseType;
protected valid(): iResponse;
getRoot(): any;
select(path: string, findIn?: any): Node;
}