0

I have class A and i want to print out the amount of tables that the interface B has in its array of People. I also want to print out the amount of rows to each table that interface People has in its array of Person.

I mean i want to print i out the tables in the xxxxxxxx.html page

how can i do this ?

Data structure

export export class A {
readonly data: B;}
   
export interface B {
readonly data: Array<Array<People>>;}

export interface People {
readonly header: string;
readonly key: string;
readonly data: Array<Person>;}

export interface Person {
readonly name: string;
readonly age: string;}


 

0 Answers0