@ws-ui/shared 0.0.42 → 0.0.44

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.
@@ -148,17 +148,19 @@ declare namespace webforms {
148
148
  disabled?: boolean;
149
149
  }
150
150
 
151
- interface MemberFunctionEvent extends BaseEvent {
151
+ type MemberFunctionEvent = BaseEvent & {
152
152
  type: 'method';
153
- method?: string;
154
- dataclass?: string;
155
153
  params: MethodParam[];
156
- returns?: Omit<MethodParam, 'id'>;
157
- namespace?: string;
158
- code?: string;
159
- feedback?: boolean;
160
- datasource?: string;
161
- }
154
+ } & Partial<{
155
+ method: string;
156
+ dataclass: string;
157
+ returns: Omit<MethodParam, 'id'>;
158
+ namespace: string;
159
+ code: string;
160
+ feedback: boolean;
161
+ datasource: string;
162
+ variadicType: string;
163
+ }>
162
164
 
163
165
  interface SimpleActionEvent extends BaseEvent {
164
166
  type: 'simple-action';