static recycleElement(uuid: string): void;
| Parameter | Type | Description |
|---|---|---|
uuid | string | Element unique identifier (see Element.uuid) |
Example
import { PluginCommAPI } from 'sn-plugin-lib';
/**
* Recycle Element example.
*/
export async function exampleRecycleElement(uuid: string) {
PluginCommAPI.recycleElement(uuid);
}