mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 10:33:01 +00:00
fixed all warnings :D
This commit is contained in:
@@ -1,37 +1,32 @@
|
||||
// Drizzle tables
|
||||
export { User, Project, Issue, Organisation, OrganisationMember } from "./schema";
|
||||
|
||||
// Types
|
||||
export type {
|
||||
UserRecord,
|
||||
UserInsert,
|
||||
OrganisationRecord,
|
||||
OrganisationInsert,
|
||||
OrganisationMemberRecord,
|
||||
OrganisationMemberInsert,
|
||||
ProjectRecord,
|
||||
ProjectInsert,
|
||||
IssueRecord,
|
||||
IssueInsert,
|
||||
} from "./schema";
|
||||
|
||||
// Zod schemas
|
||||
export {
|
||||
UserSelectSchema,
|
||||
UserInsertSchema,
|
||||
OrganisationSelectSchema,
|
||||
OrganisationInsertSchema,
|
||||
OrganisationMemberSelectSchema,
|
||||
OrganisationMemberInsertSchema,
|
||||
ProjectSelectSchema,
|
||||
ProjectInsertSchema,
|
||||
IssueSelectSchema,
|
||||
IssueInsertSchema,
|
||||
} from "./schema";
|
||||
|
||||
// Responses
|
||||
export type {
|
||||
IssueRecord,
|
||||
IssueResponse,
|
||||
ProjectResponse,
|
||||
OrganisationInsert,
|
||||
OrganisationMemberInsert,
|
||||
OrganisationMemberRecord,
|
||||
OrganisationRecord,
|
||||
OrganisationResponse,
|
||||
ProjectInsert,
|
||||
ProjectRecord,
|
||||
ProjectResponse,
|
||||
UserInsert,
|
||||
UserRecord,
|
||||
} from "./schema";
|
||||
export {
|
||||
Issue,
|
||||
IssueInsertSchema,
|
||||
IssueSelectSchema,
|
||||
Organisation,
|
||||
OrganisationInsertSchema,
|
||||
OrganisationMember,
|
||||
OrganisationMemberInsertSchema,
|
||||
OrganisationMemberSelectSchema,
|
||||
OrganisationSelectSchema,
|
||||
Project,
|
||||
ProjectInsertSchema,
|
||||
ProjectSelectSchema,
|
||||
User,
|
||||
UserInsertSchema,
|
||||
UserSelectSchema,
|
||||
} from "./schema";
|
||||
|
||||
Reference in New Issue
Block a user