Closed lppedd closed 5 years ago
Hi! How would you code a FormGroup against this interface?
export interface CronForm { seconds: { choice: string every: number startingFrom: number specific: List<number> everyBetweenFrom: number everyBetweenTo: number } }
I've tried with
this.formBuilder.group<CronForm>({ seconds: this.formBuilder.group({ }) })
With no luck (compilation error).
Nevermind, I was doing something wrong! I'll close this for now.
Hi! How would you code a FormGroup against this interface?
I've tried with
With no luck (compilation error).