n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 471 B
TypeScript
import type { ICredentialContext } from 'n8n-workflow';
import { ITokenIdentifier } from './identifier-interface';
import { AuthService } from '../../../../auth/auth.service';
export declare class N8NIdentifier implements ITokenIdentifier {
private readonly authService;
constructor(authService: AuthService);
validateOptions(_: Record<string, unknown>): Promise<void>;
resolve(context: ICredentialContext, _: Record<string, unknown>): Promise<string>;
}