UNPKG

open-lineage-client

Version:

TypeScript/JavaScript client for creating and sending OpenLineage standard events.

16 lines (15 loc) 410 B
import { Transport } from './TransportInterface.js'; export interface TransportConfig { type: string; url: string; options: object; token: string | null; } export interface ClientConfig { transport: TransportConfig; } /** * Retrieves the appropriate transport based on the configuration file. */ declare function getTransportFromFile(): Transport | null; export { getTransportFromFile };