mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-26 06:09:57 +00:00
9 lines
261 B
TypeScript
9 lines
261 B
TypeScript
export interface WorkflowLogModel extends Omit<BaseModel, "updated"> {
|
|
nodeId: string;
|
|
nodeName: string;
|
|
timestamp: ReturnType<typeof Date.prototype.getTime>;
|
|
level: "DEBUG" | "INFO" | "WARN" | "ERROR";
|
|
message: string;
|
|
data: Record<string, any>;
|
|
}
|