mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-26 09:44:25 +01:00
7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
import { User } from '@/db/users.ts';
|
|
interface EventData {
|
|
user: User | undefined;
|
|
}
|
|
|
|
export type { EventData };
|