UNPKG

n8n

Version:

n8n Workflow Automation Tool

7 lines (6 loc) 385 B
import type { WorkflowEntity } from '@n8n/db'; import type { WorkflowCredentialRequirement } from './credential.types'; import type { RequirementsExtractor } from '../requirements-extractor'; export declare class CredentialRequirementsExtractor implements RequirementsExtractor<WorkflowCredentialRequirement> { extract(workflow: WorkflowEntity): WorkflowCredentialRequirement[]; }