UNPKG

bun-sqlite-orm

Version:

A lightweight TypeScript ORM for Bun runtime with Bun SQLite, featuring Active Record pattern and decorator-based entities

10 lines (9 loc) 268 B
// Main exports for bun-sqlite-orm export * from './data-source.ts'; export * from './entity'; export * from './decorators'; export * from './logger'; export * from './errors'; export * from './statement-cache'; export * from './transaction'; export * from './types';