Type Alias: PluginData\<T, U, N\> | AppKit
type PluginData<T, U, N> = { config: U; name: N; plugin: T;};
Tuple of plugin class, config, and name. Created by toPlugin() and passed to createApp().
toPlugin()
createApp()
T
U
N
config: U;
name: N;
plugin: T;