- Add explicit type annotations for isolatedDeclarations - Export Database type alias from db-schema - Fix import paths and add proper type exports - Update common schemas with better exports Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
/**
|
|
* Database schema types generated from PostgreSQL schema
|
|
*
|
|
* @module @reviq/db-schema
|
|
*/
|
|
|
|
// Re-export DB as Database for convenience
|
|
export type { DB as Database } from "./types.js";
|
|
export * from "./types.js";
|