@bizdoc/core 1.16.6 → 1.16.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -224,7 +224,7 @@ export interface DesignerInfo {
|
|
224
224
|
actions: ElementInfo[];
|
225
225
|
states: ElementInfo[];
|
226
226
|
}
|
227
|
-
export interface ElementInfo<
|
227
|
+
export interface ElementInfo<T = any> {
|
228
228
|
family?: string;
|
229
229
|
type?: string;
|
230
230
|
name: string;
|
@@ -232,4 +232,5 @@ export interface ElementInfo<O = any> {
|
|
232
232
|
disabled?: boolean;
|
233
233
|
draft?: boolean;
|
234
234
|
empty?: boolean;
|
235
|
+
options?: T;
|
235
236
|
}
|