UNPKG

flagpole

Version:

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

11 lines (10 loc) 409 B
import { HttpResponse } from "../httpresponse"; import { iResponse } from "../interfaces"; import { ResponseType } from "../enums"; import { XmlResponse } from "./xmlresponse"; export declare class AtomResponse extends XmlResponse implements iResponse { get responseTypeName(): string; get responseType(): ResponseType; init(httpResponse: HttpResponse): void; private hasRequiredAtomFields; }