Initial commit

This commit is contained in:
bartonstee
2020-12-21 09:28:34 +01:00
committed by GitHub
parent e9d6445f85
commit 9d91c4b658
15 changed files with 20514 additions and 199 deletions

18
typings/MountEventProps.d.ts vendored Normal file
View File

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