@cardscan.ai/insurance-cardscan-react
Version:
A library that makes it easy to add health insurance card scanning to any web application
12 lines (11 loc) • 336 B
TypeScript
declare global {
interface MediaDeviceInfo {
getCapabilities(): MediaTrackCapabilities;
}
}
type Props = {
isMobile: boolean;
isVideoPortrait: boolean;
};
declare const ScanVideoViewer: ({ isMobile, isVideoPortrait }: Props) => import("react/jsx-runtime").JSX.Element;
export default ScanVideoViewer;