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.
获取套索的标题数据。
static getLassoTitles(): Promise<APIResponse<Title[]>>;
APIResponse<Title[]>
result
Title
import { PluginNoteAPI } from 'sn-plugin-lib'; /** * 获取当前套索标题数据的示例。 */ export async function exampleGetLassoTitles() { const res = await PluginNoteAPI.getLassoTitles(); if (!res.success) { throw new Error(res.error?.message ?? 'getLassoTitles 调用失败'); } return res.result; }