Spaces:
Build error
Build error
Create types.ts
Browse files
types.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* @license
|
| 3 |
+
* SPDX-License-Identifier: Apache-2.0
|
| 4 |
+
*/
|
| 5 |
+
/* tslint:disable */
|
| 6 |
+
|
| 7 |
+
export interface AppDefinition {
|
| 8 |
+
id: string;
|
| 9 |
+
name: string;
|
| 10 |
+
icon: string;
|
| 11 |
+
color: string;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
export interface InteractionData {
|
| 15 |
+
id: string;
|
| 16 |
+
type: string;
|
| 17 |
+
value?: string;
|
| 18 |
+
elementType: string;
|
| 19 |
+
elementText: string;
|
| 20 |
+
appContext: string | null;
|
| 21 |
+
}
|