@zealicsolutions/web-ui 0.3.159 → 0.3.161
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,8 +3,8 @@ import { Dispatch, SetStateAction } from 'react';
|
|
3
3
|
import type { AnyObject } from 'typescript';
|
4
4
|
declare type UseSetFormDataProps<DefaultValueType> = {
|
5
5
|
defaultValue?: DefaultValueType;
|
6
|
-
dataModelField
|
7
|
-
setFormData
|
6
|
+
dataModelField?: DataConnectionValues;
|
7
|
+
setFormData?: Dispatch<SetStateAction<AnyObject>>;
|
8
8
|
};
|
9
9
|
export declare const useSetFormData: <DefaultValueType>({ setFormData, defaultValue, dataModelField, }: UseSetFormDataProps<DefaultValueType>) => void;
|
10
10
|
export {};
|