uva-covid19-testing-kiosk/models/Default.tsx

17 lines
403 B
TypeScript
Raw Permalink Normal View History

import {CameraType, LabelLayout} from './ElementProps';
export interface AppDefaults {
countsCollection: string;
samplesCollection: string;
dateEncodedFormat: string;
dateDisplayFormat: string;
numCopies: number;
labelLayout: LabelLayout;
cameraType: CameraType;
locationId: string;
lineCountRegex: RegExp;
qrCodeRegex: RegExp;
2020-09-14 17:51:17 +00:00
barCodeRegex: RegExp;
barCodeNumLength: number;
}