Skip to content
This repository has been archived by the owner on Aug 25, 2022. It is now read-only.

Commit

Permalink
fix: Fix the type definition of FormArray method.
Browse files Browse the repository at this point in the history
  • Loading branch information
itigoore01 committed Feb 20, 2020
1 parent fcf01fa commit 0021a94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/ngx-type-safe-reactive-form/src/lib/forms.ts
Expand Up @@ -74,7 +74,8 @@ export type TypedFormArray<TControl extends TypedAbstractControl<any>, TValue ex
getRawValue(): TValue;

at(index: number): TControl;
push(index: number, control: TControl): void;
insert(index: number, control: TControl): void;
push(control: TControl): void;
setControl(index: number, control: TControl): void;
}>;

Expand Down

0 comments on commit 0021a94

Please sign in to comment.