Represents a table, identified by a header and a list of rows.

interface Table {
    header: string[];
    rows: string[][];
}

Properties

Properties

header: string[]
rows: string[][]