kibana/docs/development/core/public/kibana-plugin-public.plugininitializer.md
Mikhail Shustov 4e73b1865a
Narrow type of PluginDeps to an object (#40846)
* Narrow type of PluginDeps to an object

* re-generate docs
2019-07-23 10:48:32 +02:00

628 B

Home > kibana-plugin-public > PluginInitializer

PluginInitializer type

The plugin export at the root of a plugin's public 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>;