UNPKG

@itwin/insights-client

Version:

Insights client for the iTwin platform

25 lines 775 B
/** * Allowed current state of extraction. * @export * @interface ExtractionState */ export var ExtractionState; (function (ExtractionState) { ExtractionState["Queued"] = "Queued"; ExtractionState["Running"] = "Running"; ExtractionState["Succeeded"] = "Succeeded"; ExtractionState["PartiallySucceeded"] = "PartiallySucceeded"; ExtractionState["Failed"] = "Failed"; })(ExtractionState || (ExtractionState = {})); /** * Level of the log entry. * @export * @interface LogLevelEntry */ export var LogLevelEntry; (function (LogLevelEntry) { LogLevelEntry["Information"] = "Information"; LogLevelEntry["Warning"] = "Warning"; LogLevelEntry["Error"] = "Error"; })(LogLevelEntry || (LogLevelEntry = {})); //# sourceMappingURL=Extraction.js.map