Files
barcodescantorch/typings/BarcodeScanTorchProps.d.ts

21 lines
498 B
TypeScript
Raw Permalink Normal View History

2020-09-29 09:46:29 +02:00
/**
* 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;
}