Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.supernote.com/llms.txt

Use this file to discover all available pages before exploring further.

getPluginName(): Promise<string | null | undefined>;
Returns
  • Promise<string | null | undefined>:pluginname

Example

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

/**
 * Get pluginname example.
 */
export async function exampleGetPluginName() {
 const name = await PluginManager.getPluginName();
 return name;
}