@cfinnestad/react-form-builder 1.0.36 → 1.0.37

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.
@@ -443,4 +443,5 @@ export declare function isNamed(item: AnyItem): item is NamedItem;
443
443
  export declare function isList(item: AnyItem): item is ListItem;
444
444
  export declare function isListItem(item: AnyItem): item is InListItem;
445
445
  export declare function hasFiles(items: AnyItem[], allItems?: AnyItem[]): boolean;
446
- export declare function itemCloneDeep<T>(items: T): T;
446
+ export declare function itemsCloneDeep(items: AnyItem[]): AnyItem[];
447
+ export declare function itemCloneDeep(item: AnyItem): AnyItem;