UNPKG

@brave/n8n-nodes-brave-search

Version:
9 lines (8 loc) 296 B
import type { INodeProperties, INodePropertyOptions } from 'n8n-workflow'; export interface BraveSearchOperation { key: string; endpoint: string; details: INodePropertyOptions; parameters: INodeProperties[]; buildQuery(parameters: Record<string, any>): Record<string, any>; }