UNPKG

flagpole

Version:

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

13 lines (12 loc) 523 B
import { ResponseType } from "./enums"; import { iResponse } from "./interfaces"; import { ProtoResponse } from "./response"; import { HttpResponse } from "./httpresponse"; export declare class VideoResponse extends ProtoResponse implements iResponse { get responseTypeName(): string; get responseType(): ResponseType; init(httpResponse: HttpResponse): void; evaluate(context: any, callback: Function): Promise<any>; find(path: string): Promise<any | null>; findAll(path: string): Promise<any[]>; }