@yudiel/react-qr-scanner
Version:
A library to scan QR codes in React.
18 lines • 518 B
TypeScript
interface IFinderProps {
scanning: boolean;
capabilities: MediaTrackCapabilities;
onOff?: boolean;
startScanning: (deviceId?: string | undefined) => void;
stopScanning: () => void;
torch?: {
status: boolean;
toggle: (value: boolean) => void;
};
zoom?: {
value: number;
onChange: (value: number) => void;
};
}
export default function Finder(props: IFinderProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=Finder.d.ts.map