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