mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 18:39:40 +02:00
Applied formatting to 1487+ files using pnpm format:write - TypeScript/JavaScript files - Svelte components - Astro pages - JSON configs - Markdown docs 13 files still need manual review (Astro JSX comments)
34 lines
451 B
TypeScript
34 lines
451 B
TypeScript
// Main entry point for @manacore/manadeck-database
|
|
|
|
// Export database client utilities
|
|
export { createClient, getDb, closeDb, type Database } from './client.js';
|
|
|
|
// Export Drizzle utilities
|
|
export {
|
|
eq,
|
|
ne,
|
|
gt,
|
|
gte,
|
|
lt,
|
|
lte,
|
|
and,
|
|
or,
|
|
not,
|
|
inArray,
|
|
notInArray,
|
|
isNull,
|
|
isNotNull,
|
|
like,
|
|
ilike,
|
|
sql,
|
|
asc,
|
|
desc,
|
|
count,
|
|
sum,
|
|
avg,
|
|
min,
|
|
max,
|
|
} from './client.js';
|
|
|
|
// Export all schemas and types
|
|
export * from './schema/index.js';
|