prequel/src/index.ts
2025-04-07 15:24:31 -04:00

13 lines
284 B
TypeScript

import { ColumnOf } from "./column-presets";
import type { Column, ColumnShorthand, DataType } from "./columns";
import { Prequel } from "./prequel";
import { Table } from "./table";
export {
Prequel,
Table,
ColumnOf,
type DataType,
type Column,
type ColumnShorthand,
};