mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
18 lines
805 B
TypeScript
18 lines
805 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
// Export types separately to the actual run-time objects
|
|
export type { ReportHTTP, ReporterConfig } from './reporter';
|
|
export type { UiCounterMetricType } from './metrics';
|
|
export type { Report } from './report';
|
|
export type { Storage } from './storage';
|
|
|
|
export { Reporter } from './reporter';
|
|
export { METRIC_TYPE } from './metrics';
|
|
export { ReportManager } from './report';
|
|
export { ApplicationUsageTracker } from './application_usage_tracker';
|