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.

static recycleElement(uuid: string): void;
Parameters
ParameterTypeDescription
uuidstringElement unique identifier (see Element.uuid)

Example

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

/**
 * Recycle Element example.
 */
export async function exampleRecycleElement(uuid: string) {
 PluginCommAPI.recycleElement(uuid);
}