@uppy/screen-capture
Version:
Uppy plugin that captures video from display or application.
14 lines • 494 B
TypeScript
import type { I18n } from '@uppy/utils';
import type { h } from 'preact';
interface RecordButtonProps {
recording: boolean | undefined;
onStartRecording: () => void;
onStopRecording: () => Promise<void>;
i18n: I18n;
}
/**
* Control screen capture recording. Will show record or stop button.
*/
export default function RecordButton({ recording, onStartRecording, onStopRecording, i18n, }: RecordButtonProps): h.JSX.Element;
export {};
//# sourceMappingURL=RecordButton.d.ts.map