kibana/x-pack/plugins/searchprofiler/public/types.ts
Maryia Lapata 62036cbd99
[NP] Change plugin ids to camel case (#56620) (#56958)
* Rename dev_tools plugin id to devTools

* Fix path

* Rename kibana_legacy plugin id to kibanaLegacy

* Fix typos

* Rename plugin id to kibanaLegacy

* Revert renaming for url, route, role

* Revert changes in doc

* Update plugin.ts
2020-02-06 15:58:32 +03:00

16 lines
600 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 { HomePublicPluginSetup } from '../../../../src/plugins/home/public';
import { DevToolsSetup } from '../../../../src/plugins/dev_tools/public';
import { LicensingPluginSetup } from '../../licensing/public';
export interface AppPublicPluginDependencies {
licensing: LicensingPluginSetup;
home: HomePublicPluginSetup;
devTools: DevToolsSetup;
}