UNPKG

scanbot-web-sdk

Version:

Scanbot Web Document and Barcode Scanner SDK

19 lines (18 loc) 790 B
import * as React from 'react'; import { ManualCountEditDialog, Sheet, SheetContent } from '../../../configuration'; import { CountedBarcodeAction } from "../../model/counted-barcodes"; import { DrawerHeaderContentProps } from "./subviews/drawer-header-content"; declare class Props { isPlaceholderVisible: boolean; sheetStyle: Sheet; contentStyle: SheetContent; manualCountEditDialog: ManualCountEditDialog; onBarcodeChange: (action: CountedBarcodeAction) => void; children: React.ReactNode; drawerHeaderContentProps: DrawerHeaderContentProps; isOpen: boolean; onSwipe: (action: 'swipe-to-open' | 'swipe-to-close') => void; closedSheetVisibleHeight: number; } export declare function BarcodeResultDrawer(props: Props): React.JSX.Element; export {};