daddy/client/src/types/event.ts

11 lines
175 B
TypeScript

import { User } from "./user";
export interface Event {
id: string
createdAt: Date
updatedAt: Date
user: User
objectType: string
objectId: number
type: string
}