import type { Commit } from "./commit"; import { RegularGraphRows } from "./regular-graph-rows"; export { createGraphRows, RegularGraphRows as GraphRows }; function createGraphRows( commits: Array>, ) { return new RegularGraphRows(commits); }