import { PluginFileAPI } from 'sn-plugin-lib';
/**
* 获取指定页标题列表的示例。
*/
export async function exampleGetTitles() {
const notePath = '/storage/emulated/0/Note/demo.note';
const res = await PluginFileAPI.getTitles(notePath, [0, 1, 2]);
if (!res.success) {
throw new Error(res.error?.message ?? 'getTitles 调用失败');
}
return res.result;
}