ditto/src/types.ts

7 lines
116 B
TypeScript
Raw Normal View History

2023-09-03 23:49:45 +00:00
import { User } from '@/db/users.ts';
2023-08-24 22:00:08 +00:00
interface EventData {
2023-09-03 23:49:45 +00:00
user: User | undefined;
2023-08-24 22:00:08 +00:00
}
2023-08-25 18:38:21 +00:00
export type { EventData };