UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

13 lines (12 loc) 430 B
export type EventLogProcessType = 'main' | 'worker' | 'webhook-processor'; export interface ResolveEventLogPathInput { logFullPath: string; logBaseName: string; instanceDir: string; processType: EventLogProcessType; } export interface ResolvedEventLogPath { logFullBasePath: string; logFileName: string; } export declare function resolveEventLogPath(input: ResolveEventLogPathInput): ResolvedEventLogPath;