File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This function returns `FormsField` object.
6
6
The ` formsField() ` takes 4 parameters:
7
7
8
8
``` typescript
9
- function formsField<T extends (arg : any ) => Form >(
9
+ declare function formsField<T extends (arg : any ) => Form >(
10
10
generateForm : T ,
11
11
initialValueListOrLength : InitialValueListOrLength <T > = [],
12
12
schema ? : FormsFieldSchema <ReturnType <T >>,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This function returns boolean.
6
6
The ` isValidForm() ` takes 1 parameter:
7
7
8
8
``` typescript
9
- function isValidForm<T extends Form >(
9
+ declare function isValidForm<T extends Form >(
10
10
form : T | (T & { $key: number })
11
11
): boolean ;
12
12
```
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This function does not check if the form is valid.
6
6
The ` toObject() ` takes 1 parameter:
7
7
8
8
``` typescript
9
- function toObject<T extends Form >(
9
+ declare function toObject<T extends Form >(
10
10
form : T | (T & { $key: number })
11
11
): Expand <ToObjectOutput <T >>;
12
12
```
You can’t perform that action at this time.
0 commit comments