UNPKG

open-lineage-client

Version:

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

22 lines (21 loc) 641 B
import { BaseFacet } from './BaseFacet.js'; /** * Represents the facets of an output dataset. */ export declare class OutputDatasetFacets { outputStatistics: OutputStatistics | null; constructor(outputStatistics?: OutputStatistics | null); } /** * Represents output statistics for an output dataset. */ export declare class OutputStatistics extends BaseFacet { rowCount: number; fileCount: number; size: number; constructor(producer: string, schemaURL: string, rowCount: number, fileCount: number, size: number); /** * Returns the schema URL for the output statistics. */ getSchema(): string; }