UNPKG

@n8n/n8n-nodes-langchain

Version:
7 lines (6 loc) 248 B
import type { ILoadOptionsFunctions } from 'n8n-workflow'; export type BedrockApi = { credentialsType: 'aws' | 'awsAssumeRole'; baseURL: string; }; export declare function resolveBedrockApi(ctx: ILoadOptionsFunctions): Promise<BedrockApi>;