Update LICENSE, README.md, and 13 more files...

This commit is contained in:
2021-03-29 14:15:50 +02:00
commit 337ea1da3a
15 changed files with 21120 additions and 0 deletions

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

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