UNPKG

@veltdev/react

Version:

Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.

12 lines (11 loc) 610 B
import { RecorderElement, RecordedData, RecorderRequestQuery, GetRecordingsResponse } from "@veltdev/types"; export declare function useRecorderUtils(): RecorderElement | undefined; /** * @deprecated Use `useRecorderEventCallback('recordingDone')` hook instead */ export declare function useRecorderAddHandler(): RecordedData | null | undefined; /** * @deprecated Use `recorderUtils.getRecordingData()` method instead */ export declare function useRecordingDataByRecorderId(recorderId: string): RecordedData | null; export declare function useRecordings(query?: RecorderRequestQuery): GetRecordingsResponse[];