ditto/src/types.ts

7 lines
116 B
TypeScript
Raw Normal View History

2023-08-24 22:00:08 +00:00
import { UserRow } from '@/db.ts';
interface EventData {
user: UserRow | undefined;
}
2023-08-25 18:38:21 +00:00
export type { EventData };