Objective
Build an interface that inside will have telephone_array. I know that my telephone_array is an array that has many objects inside.
Interfaces that I have
interface Client {
id: string;
name: string;
email: string;
telephone: string;
created_at: string;
}
interface ClientsResponse {
clients: Client[];
}
I would like to know how can I put the telephone_array inside the interface.
