flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
11 lines (10 loc) • 509 B
TypeScript
import { iResponse, GenericResponse, NormalizedResponse, ResponseType } from "./response";
import { Scenario } from "./scenario";
export declare class VideoResource extends GenericResponse implements iResponse {
readonly typeName: string;
readonly type: ResponseType;
constructor(scenario: Scenario, response: NormalizedResponse);
evaluate(context: any, callback: Function): Promise<any>;
asyncSelect(path: string): Promise<any | null>;
asyncSelectAll(path: string): Promise<any[]>;
}