import { Row } from "https://deno.land/x/cliffy@v1.0.0-rc.1/table/mod.ts";
Row representation.
Can be used to customize a single row.
import { Row, Table } from "./mod.ts";
new Table()
.body([
new Row("Foo", "Bar").align("right"),
["Beep", "Boop"],
])
.render();