ditto/src/types.ts
2023-08-25 13:38:21 -05:00

6 lines
116 B
TypeScript

import { UserRow } from '@/db.ts';
interface EventData {
user: UserRow | undefined;
}
export type { EventData };