@wirequery/wirequery-js-core
Version:
WireQuery JS SDK Core
12 lines (11 loc) • 391 B
TypeScript
export declare class Recorder {
private wirequeryUrl;
private templateId;
private apiKey;
private recording?;
private events;
constructor(wirequeryUrl: string, templateId: number, apiKey: string);
get correlationId(): string | undefined;
startRecording(args: object): Promise<import("@rrweb/types").listenerHandler>;
stopRecording(): Promise<Response>;
}