> ## 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.

# recycleElement

> Recycle an Element object and release native Android cache on the native side.

```ts theme={null}
static recycleElement(uuid: string): void;
```

**Parameters**

| Parameter | Type     | Description                                                                                      |
| --------- | -------- | ------------------------------------------------------------------------------------------------ |
| `uuid`    | `string` | Element unique identifier (see [`Element.uuid`](/en/api-reference/supernote-plugin/types/trail)) |

## Example

```ts wrap theme={null}
import { PluginCommAPI } from 'sn-plugin-lib';

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