Skip to content

Commit c5711bb

Browse files
authored
Merge pull request #38 from jfbloom22/master
fix: should parent and control prams on FieldConfig be optional
2 parents 0f8ca6d + a3715e7 commit c5711bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,8 @@ export interface GroupProps {
327327
}
328328
export interface FieldConfig extends GroupProps {
329329
controls: { [key: string]: any } | Array<any>
330-
control: FormArray | FormGroup
331-
parent: FormArray | FormGroup
330+
control?: FormArray | FormGroup
331+
parent?: FormArray | FormGroup
332332
options?: AbstractControlOptions
333333
strict?: boolean
334334
meta?: { [key: string]: any }

0 commit comments

Comments
 (0)