mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
568 B
568 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, TPluginsSetup extends Record<string, unknown> = {}> = (core: PluginInitializerContext) => Plugin<TSetup, TPluginsSetup>;