Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
qin-guan committed Jan 6, 2024
1 parent 5df3ada commit 81857d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type UserRestricted = Pick<User, 'id' | 'name'>
export type UserRestrictedWithAdmissionKey = UserRestricted & { admissionKey: string }

export type Event = InferSelectModel<typeof events>
export type EventWithAttendees = Omit<Event, 'startDateTime' | 'endDateTime'> & { startDateTime: number; endDateTime: number; attendees: UserRestrictedWithAdmissionKey[] }
export type EventWithAttendees = Omit<Event, 'startDateTime' | 'endDateTime'> & { startDateTime: number, endDateTime: number, attendees: UserRestrictedWithAdmissionKey[] }

export type Article = InferSelectModel<typeof articles>

Expand Down

0 comments on commit 81857d6

Please sign in to comment.