import { PluginFileAPI } from 'sn-plugin-lib';
/**
* 获取页面像素尺寸的示例。
*/
export async function exampleGetPageSize() {
const notePath = '/storage/emulated/0/Note/demo.note';
const page = 1;
const res = await PluginFileAPI.getPageSize(notePath, page);
if (!res.success) {
throw new Error(res.error?.message ?? 'getPageSize 调用失败');
}
return res.result;
}