interface TableObject {
    columns: {
        key: string;
        title: string;
    }[];
    rows: {
        [key: string]: CellElement[] | undefined;
    }[];
}

Properties

Properties

columns: {
    key: string;
    title: string;
}[]

Type declaration

  • key: string
  • title: string
rows: {
    [key: string]: CellElement[] | undefined;
}[]

Type declaration

Generated using TypeDoc