Skip to content

Table

type Table = {
children?: TableRow[];
id?: string;
key?: string;
type: 'Table';
};
optional children: TableRow[];

optional id: string;

optional key: string;

type: 'Table';