open-lineage-client
Version:
TypeScript/JavaScript client for creating and sending OpenLineage standard events.
11 lines • 420 B
JavaScript
//export type EventType = 'START' | 'RUNNING' | 'COMPLETE' | 'ABORT' | 'FAIL' | 'OTHER';
export var EventType;
(function (EventType) {
EventType["START"] = "START";
EventType["RUNNING"] = "RUNNING";
EventType["COMPLETE"] = "COMPLETE";
EventType["ABORT"] = "ABORT";
EventType["FAIL"] = "FAIL";
EventType["OTHER"] = "OTHER";
})(EventType || (EventType = {}));
//# sourceMappingURL=EventTypes.js.map