17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
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;
|
|
barCodeRegex: RegExp;
|
|
barCodeNumLength: number;
|
|
}
|