mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
23 lines
398 B
TypeScript
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";
|