import { PluginFileAPI } from 'sn-plugin-lib';/** * Example: get the last element of the current note page. */export async function exampleGetLastElement() { const res = await PluginFileAPI.getLastElement(); if (!res.success) { throw new Error(res.error?.message ?? 'getLastElement call failed'); } return res.result;}