prequel/src/index.ts
2025-04-06 19:28:42 -04:00

13 lines
282 B
TypeScript

import { ColumnOf } from "./column-types";
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,
};