khulnasoft commited on
Commit
cf39ffc
·
verified ·
1 Parent(s): 1bc2a4b

Create types.ts

Browse files
Files changed (1) hide show
  1. types.ts +21 -0
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
+ }