32 lines
684 B
TypeScript
Raw Normal View History

import {BarCodeScannedCallback} from 'expo-barcode-scanner';
import {BarcodeScannerAppState} from './BarcodeScannerAppState';
export interface ElementProps {
title?: string;
}
export interface StateProps extends ElementProps {
appState: BarcodeScannerAppState;
}
export interface BarCodeProps extends ElementProps {
id: string;
barCodeId: string;
date: Date;
location: string;
svg: any;
}
export interface ButtonProps extends ElementProps {
onClicked: () => void;
}
export interface ScannerProps extends ElementProps {
onScanned: BarCodeScannedCallback;
onCancel: () => void;
}
export interface PrintingProps extends BarCodeProps {
onCancel: () => void;
}