mirror of
https://github.com/sartography/uva-covid19-testing-kiosk.git
synced 2025-02-21 03:48:21 +00:00
32 lines
684 B
TypeScript
32 lines
684 B
TypeScript
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;
|
|
}
|