@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
12 lines (11 loc) • 380 B
TypeScript
import { WorkflowHistoryRepository } from '@n8n/db';
import { License } from '../../license';
export declare class WorkflowHistoryManager {
private workflowHistoryRepo;
private license;
pruneTimer?: NodeJS.Timeout;
constructor(workflowHistoryRepo: WorkflowHistoryRepository, license: License);
init(): void;
shutdown(): void;
prune(): Promise<void>;
}