UNPKG

open-lineage-client

Version:

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

11 lines (10 loc) 239 B
/** * Base class for all events. */ export declare class BaseEvent { eventTime: string; producer: string; schemaURL: string; constructor(eventTime: string, producer: string, schemaURL: string); getSchema(): string; }