"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _exportNames = { plugin: true }; exports.plugin = plugin; var _plugin = require("./plugin"); Object.keys(_plugin).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; if (key in exports && exports[key] === _plugin[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function () { return _plugin[key]; } }); }); /* * 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. */ // TODO: https://github.com/elastic/kibana/issues/110892 /* eslint-disable @kbn/eslint/no_export_all */ function plugin(initializerContext) { return new _plugin.DevToolsPlugin(initializerContext); }