Initial commit

This commit is contained in:
bartonstee
2020-12-21 09:14:57 +01:00
committed by GitHub
parent 5b26b0c467
commit 94775bc3f7
15 changed files with 21108 additions and 199 deletions

24
typings/AppVersionProps.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
/**
* This file was generated from AppVersion.xml
* WARNING: All changes made to this file will be overwritten
* @author Mendix UI Content Team
*/
import { ActionValue, EditableValue } from "mendix";
export interface AppVersionProps<Style> {
name: string;
style: Style[];
appVersion: string;
backendVersion?: EditableValue<string>;
updateFlow?: ActionValue;
noUpdateFlow?: ActionValue;
}
export interface AppVersionPreviewProps {
class: string;
style: string;
appVersion: string;
backendVersion: string;
updateFlow: {} | null;
noUpdateFlow: {} | null;
}