kibana/x-pack/plugins/telemetry_collection_xpack/server/index.ts

16 lines
540 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;
* you may not use this file except in compliance with the Elastic License.
*/
import { TelemetryCollectionXpackPlugin } from './plugin';
export { ESLicense } from './telemetry_collection';
// This exports static code and TypeScript types,
// as well as, Kibana Platform `plugin()` initializer.
export function plugin() {
return new TelemetryCollectionXpackPlugin();
}