UNPKG

react-screen-recorder-lite

Version:

A lightweight React screen recorder library with customizable components and hooks.

14 lines (13 loc) 348 B
import React from "react"; export interface ScreenRecorderProps { className?: string; buttonClassName?: string; buttonText?: { start?: string; stop?: string; loading?: string; }; errorClassName?: string; statusClassName?: string; } export declare const ScreenRecorder: React.FC<ScreenRecorderProps>;