flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
9 lines (8 loc) • 334 B
TypeScript
import { iResponse } from "../interfaces";
import { ScenarioType } from "../scenario-types";
import { MediaResponse } from "./mediaresponse";
export declare class VideoResponse extends MediaResponse implements iResponse {
get responseTypeName(): string;
get responseType(): ScenarioType;
protected _mimePattern: RegExp;
}