8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
import { JsonValue } from "@prisma/client/runtime/library";
|
|
|
|
export interface ParticipantLog {
|
|
event: string;
|
|
timestamp: Date;
|
|
user: string;
|
|
}
|