11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
export interface AuditLogEntry {
|
|
id: string;
|
|
ts: string;
|
|
actorId: string;
|
|
action: string;
|
|
target?: string;
|
|
status: 'ok' | 'error';
|
|
message?: string;
|
|
meta?: Record<string, unknown>;
|
|
}
|