UNPKG

n8n-nodes-brightdata

Version:

Community node to work with BrightData service for scraping purposes

12 lines (11 loc) 379 B
import { INodeType, INodeTypeDescription } from 'n8n-workflow'; import { getActiveZones, getCountries } from './SearchFunctions'; export declare class BrightData implements INodeType { description: INodeTypeDescription; methods: { listSearch: { getActiveZones: typeof getActiveZones; getCountries: typeof getCountries; }; }; }