Interface Forms<T>

This is for when you have a list of ReactiveForm and you want to manage them for API with ManyToOne relation.

interface Forms<T> {
    children?: Forms<T>[];
    form: ReactiveForm<T>;
    id?: number;
}

Type Parameters

Properties

Properties

children?: Forms<T>[]
id?: number

If it has a value, that means it exists in databases.