UNPKG

@fin.cx/opendata

Version:

A comprehensive TypeScript library for accessing business data and real-time financial information. Features include German company data management with MongoDB integration, JSONL bulk processing, automated Handelsregister interactions, and real-time stoc

10 lines (9 loc) 367 B
import type { OpenData } from './classes.main.opendata.js'; export declare class GermanBusinessData { openDataRef: OpenData; constructor(openDataRefArg: OpenData); start(): Promise<void>; stop(): Promise<void>; update(): Promise<void>; getBusinessRecordByName(nameArg: string): Promise<import("./classes.businessrecord.js").BusinessRecord>; }