UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

10 lines (9 loc) 484 B
import { ReadRecordingEndResponse, ReadRecordingPartResponse } from '../core/runner-protocol'; export declare class ReadRecordingResponseStreamHandler { private resolve; private reject; videoChunks: string[]; constructor(resolve: (value: ReadRecordingPartResponse | PromiseLike<ReadRecordingPartResponse>) => void, reject: (reason?: unknown) => void); onMessage(data: ReadRecordingPartResponse | ReadRecordingEndResponse): void; onError(err: unknown): void; }