Files
certd/packages/libs/lib-server/src/basic/audit.ts
T

22 lines
409 B
TypeScript
Raw Normal View History

2026-07-12 02:29:54 +08:00
export type AuditLogOptions = {
type?: string;
action?: string;
content?: string;
template?: string;
disabled?: boolean;
};
export type AuditLogContext = {
type?: string;
action?: string;
append?: string | string[];
content?: string;
projectId?: number;
projectName?: string;
enabled?: boolean;
allowAnonymous?: boolean;
scope?: string;
userId?: number;
username?: string;
};