n8n
Version:
n8n Workflow Automation Tool
7 lines (6 loc) • 391 B
TypeScript
import type { ModuleInterface } from '@n8n/decorators';
export declare class DynamicCredentialsModule implements ModuleInterface {
init(): Promise<void>;
entities(): Promise<(typeof import("./database/entities/credential-resolver").DynamicCredentialResolver | typeof import("./database/entities/dynamic-credential-entry").DynamicCredentialEntry)[]>;
shutdown(): Promise<void>;
}