flint-orm
Version:
Type-safe SQLite ORM for JavaScript
5 lines (4 loc) • 416 B
TypeScript
export { text, integer, boolean, json, date, real } from '../schema/columns';
export type { ColumnDef, IntegerColumnDef, DateColumnDef, DateColumnDefWithDefault, ForeignKeyAction } from '../schema/columns';
export { table, index, primaryKey, snakeCase } from '../schema/table';
export type { InferRow, InsertRow, TableDef, AnyTable, IndexDef, IndexBuilder, PrimaryKeyBuilder, PrimaryKeyDef } from '../schema/table';