UNPKG

flagpole

Version:

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

11 lines (10 loc) 417 B
import { HttpResponse } from "../httpresponse"; import { iResponse } from "../interfaces"; import { XmlResponse } from "./xmlresponse"; import { ScenarioType } from "../scenario-types"; export declare class RssResponse extends XmlResponse implements iResponse { get responseTypeName(): string; get responseType(): ScenarioType; init(httpResponse: HttpResponse): void; private hasRequiredRss2Fields; }