UNPKG

@cardscan.ai/insurance-cardscan-react

Version:

A library that makes it easy to add health insurance card scanning to any web application

13 lines (12 loc) 511 B
import { FC } from "react"; import { IndicatorOptions } from "../types/scanview.types"; import { WebToMobileHandOffConfig } from "../components/ErrorModal/components/WebToMobile/WebToMobile"; export type WebToMobileModalProps = { enableModel: boolean; cardScanApi: any; webToMobileHandoffConfig?: WebToMobileHandOffConfig; spinnerOptions: IndicatorOptions; backsideSupport?: boolean; }; declare const WebToMobileModal: FC<WebToMobileModalProps>; export default WebToMobileModal;