UNPKG

@uppy/screen-capture

Version:

Uppy plugin that captures video from display or application.

15 lines 524 B
import type { I18n } from '@uppy/utils'; import type { h } from 'preact'; interface SubmitButtonProps { recording: boolean; recordedVideo: string | null; onSubmit: () => void; i18n: I18n; capturedScreenshotUrl?: string | null; } /** * Submit recorded video to uppy. Enabled when file is available */ export default function SubmitButton({ recording, recordedVideo, onSubmit, capturedScreenshotUrl, i18n, }: SubmitButtonProps): h.JSX.Element | null; export {}; //# sourceMappingURL=SubmitButton.d.ts.map