UNPKG

n8n-nodes-warmr

Version:
7 lines (6 loc) 358 B
import type { Company, CompanySearchQuery } from "../types/company.types"; import type { PaginatedResponse } from "../types/contact.types"; export declare class CompaniesService { static getCompanies(query: CompanySearchQuery, apiKey: string): Promise<PaginatedResponse<Company>>; static getCompany(uuid: string, apiKey: string): Promise<Company>; }