mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Improve consistency in Plugin types * Use #has() instead of undefined check * Rename parameter * Update core docs * Internal updates
495 B
495 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, TPluginsSetup extends Record<PluginName, unknown> = {}> = (coreContext: PluginInitializerContext) => Plugin<TSetup, TPluginsSetup>;