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