Promise<string | null | undefined>:pluginname
PluginManager
getPluginName
Get pluginname.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get pluginname.
getPluginName(): Promise<string | null | undefined>;
Promise<string | null | undefined>:pluginnameimport { PluginManager } from 'sn-plugin-lib';
/**
* Get pluginname example.
*/
export async function exampleGetPluginName() {
const name = await PluginManager.getPluginName();
return name;
}