We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a4a7d commit 7668c7eCopy full SHA for 7668c7e
1 file changed
src/interfaces.ts
@@ -1,3 +1,5 @@
1
+import { GuiFields } from '@acrodata/gui';
2
+
3
export interface VisualAttr {
4
x: number;
5
y: number;
@@ -181,3 +183,18 @@ export interface VisualDataSource {
181
183
/** 数据源配置 */
182
184
tingyunConfig?: string;
185
}
186
187
+export interface VisualConfigs {
188
+ attr?: Partial<VisualAttr>;
189
190
+ config?: GuiFields;
191
+ options?: Record<string, any>;
192
193
+ apis?: VisualApis;
194
+ data?: Record<string, any[]>;
195
196
+ events?: VisualEvents;
197
+ actions?: VisualActions;
198
199
+ resources?: Record<string, any>;
200
+}
0 commit comments