Skip to content

Commit

Permalink
Remove unnecessarily exported constants
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo committed Apr 29, 2021
1 parent cc2e449 commit 5b0472a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/plugins/telemetry/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import { PluginInitializerContext, PluginConfigDescriptor } from 'kibana/server';
import { TelemetryPlugin } from './plugin';
import * as constants from '../common/constants';
import { configSchema, TelemetryConfigType } from './config';

export type { TelemetryPluginSetup, TelemetryPluginStart } from './plugin';
Expand All @@ -28,7 +27,6 @@ export const config: PluginConfigDescriptor<TelemetryConfigType> = {

export const plugin = (initializerContext: PluginInitializerContext<TelemetryConfigType>) =>
new TelemetryPlugin(initializerContext);
export { constants };
export { getClusterUuids, getLocalStats } from './telemetry_collection';

export type {
Expand Down

0 comments on commit 5b0472a

Please sign in to comment.