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