flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
10 lines (9 loc) • 391 B
TypeScript
import { HttpResponse } from "../httpresponse";
import { iResponse } from "../interfaces";
import { HtmlResponse } from "../html/htmlresponse";
import { ScenarioType } from "../scenario-types";
export declare class XmlResponse extends HtmlResponse implements iResponse {
get responseTypeName(): string;
get responseType(): ScenarioType;
init(httpResponse: HttpResponse): void;
}