flint-orm
Version:
Type-safe SQLite ORM for JavaScript
6 lines (5 loc) • 340 B
TypeScript
export { eq, and, or, gt, gte, lt, lte, neq, isIn, isNotIn, isNull, isNotNull, like, glob, between } from '../query/conditions';
export type { Condition } from '../query/conditions';
export { sql } from '../flint';
export type { SQLExpression } from '../flint';
export { count, countColumn, sum, avg, min, max } from '../query/aggregates';