UNPKG

flagpole

Version:

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

16 lines (15 loc) 677 B
import { iResponse, iValue } from "../interfaces"; import { HttpResponse } from "../httpresponse"; import { JPathProvider, JsonDoc } from "../json/jpath"; import { ValuePromise } from "../value-promise"; import { JsonResponse } from "../json/jsonresponse"; import { ScenarioType } from "../scenario-types"; export declare class FfprobeResponse extends JsonResponse implements iResponse, JPathProvider { jsonDoc: JsonDoc | undefined; get responseTypeName(): string; get responseType(): ScenarioType; get jsonBody(): iValue; init(httpResponse: HttpResponse): void; find: (path: string) => ValuePromise; findAll: (path: string) => Promise<iValue[]>; }