kibana/docs/development/core/server/kibana-plugin-server.plugininitializer.md
Mikhail Shustov 93e4815b61
Narrow type of PluginDeps to an object (#40846) (#41745)
* Narrow type of PluginDeps to an object

* re-generate docs
2019-07-23 12:01:08 +02:00

628 B

Home > kibana-plugin-server > PluginInitializer

PluginInitializer type

The plugin export at the root of a plugin's server directory should conform to this interface.

Signature:

export declare type PluginInitializer<TSetup, TStart, TPluginsSetup extends object = object, TPluginsStart extends object = object> = (core: PluginInitializerContext) => Plugin<TSetup, TStart, TPluginsSetup, TPluginsStart>;