mirror of
https://github.com/certd/certd.git
synced 2026-07-12 16:27:34 +08:00
22 lines
409 B
TypeScript
22 lines
409 B
TypeScript
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;
|
|
};
|