Initial commit

This commit is contained in:
bartonstee
2020-09-29 09:46:29 +02:00
committed by GitHub
parent dcce7915f7
commit 91d0e19770
16 changed files with 21191 additions and 199 deletions

20
typings/BarcodeScanTorchProps.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
/**
* This file was generated from BarcodeScanTorch.xml
* WARNING: All changes made to this file will be overwritten
* @author Mendix UI Content Team
*/
import { ActionValue, EditableValue } from "mendix";
export interface BarcodeScanTorchProps<Style> {
name: string;
style: Style[];
barcode: EditableValue<string>;
onDetect?: ActionValue;
}
export interface BarcodeScanTorchPreviewProps {
class: string;
style: string;
barcode: string;
onDetect: {} | null;
}