Files
sprint/packages/shared/src/index.ts
2025-12-13 21:36:32 +00:00

23 lines
398 B
TypeScript

// Drizzle tables
export { User, Project, Issue } from "./schema";
// Types
export type {
UserRecord,
UserInsert,
ProjectRecord,
ProjectInsert,
IssueRecord,
IssueInsert,
} from "./schema";
// Zod schemas
export {
UserSelectSchema,
UserInsertSchema,
ProjectSelectSchema,
ProjectInsertSchema,
IssueSelectSchema,
IssueInsertSchema,
} from "./schema";