Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Unregister a plugin button.
unregisterButton(id: number): Promise<boolean>;
id
number
Promise<boolean>
import { PluginManager } from 'sn-plugin-lib'; /** * Example: unregister a button. */ export async function exampleUnregisterButton() { const ok = await PluginManager.unregisterButton(1); return ok; }