import { PluginFileAPI } from 'sn-plugin-lib';
/**
* 获取笔记类型的示例。
*/
export async function exampleGetNoteType() {
const notePath = '/storage/emulated/0/Note/demo.note';
const res = await PluginFileAPI.getNoteType(notePath);
if (!res.success) {
throw new Error(res.error?.message ?? 'getNoteType 调用失败');
}
return res.result;
}