Skip to main content
This API must be called; otherwise the plugin cannot run. Call it once as early as possible at startup (multiple calls are ignored). Preferably call it immediately after AppRegistry.registerComponent.
async init(): Promise<void>;

Example

import { PluginManager } from 'sn-plugin-lib';

/**
 * Example: initialize plugin environment.
 */
export async function exampleInit() {
 await PluginManager.init();
}