Initial commit

This commit is contained in:
Endeavorance 2024-12-29 11:15:46 -05:00
commit 47d0ec687b
15 changed files with 1704 additions and 0 deletions

14
src/index.ts Normal file
View file

@ -0,0 +1,14 @@
import type { Column, ColumnShorthand, DataType } from "./columns";
import { type ExtractRowShape, Instance } from "./instance";
import { Prequel } from "./prequel";
import { Table } from "./table";
export {
Prequel,
Table,
Instance,
type DataType,
type Column,
type ColumnShorthand,
type ExtractRowShape,
};