n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 606 B
TypeScript
import { VariablesService } from '../../../../environments.ee/variables/variables.service.ee';
import type { VariableImportPlan, VariableImportRequest, VariableResolutionFailure } from './variable.types';
import type { ImportContext } from '../../n8n-packages.types';
export declare class VariableImporter {
private readonly variablesService;
constructor(variablesService: VariablesService);
plan(context: ImportContext, request: VariableImportRequest): Promise<VariableImportPlan>;
blockingFailures(request: VariableImportRequest, plan: VariableImportPlan): VariableResolutionFailure[];
}