@uppy/webcam
Version:
Uppy plugin that takes photos or records videos using the device's camera.
10 lines • 387 B
TypeScript
import type { I18n } from '@uppy/utils/lib/Translator';
import { h, type ComponentChild } from 'preact';
interface PermissionScreenProps {
hasCamera: boolean;
icon: () => ComponentChild | null;
i18n: I18n;
}
export default function PermissionsScreen({ icon, i18n, hasCamera, }: PermissionScreenProps): h.JSX.Element;
export {};
//# sourceMappingURL=PermissionsScreen.d.ts.map