Files
appversion/typings/AppVersionProps.d.ts

25 lines
608 B
TypeScript
Raw Normal View History

2020-12-21 09:14:57 +01:00
/**
* 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;
}