UNPKG

anchorbrowser

Version:

The official TypeScript library for the Anchorbrowser API

22 lines 736 B
import { APIResource } from "../../../core/resource.js"; import { APIPromise } from "../../../core/api-promise.js"; import { RequestOptions } from "../../../internal/request-options.js"; export declare class Primary extends APIResource { /** * Downloads the primary recording file for the specified browser session. Returns * the recording as an MP4 file. * * @example * ```ts * const primary = * await client.sessions.recordings.primary.get( * 'session_id', * ); * * const content = await primary.blob(); * console.log(content); * ``` */ get(sessionID: string, options?: RequestOptions): APIPromise<Response>; } //# sourceMappingURL=primary.d.ts.map