复制
static getNoteSystemTemplates(): Promise<Template[] | null | undefined>;
Template[]:模版类型见Template
示例
复制
import { PluginCommAPI } from 'sn-plugin-lib';
/**
* 获取系统模板列表的示例。
*/
export async function exampleGetNoteSystemTemplates() {
const templates = await PluginCommAPI.getNoteSystemTemplates();
return templates ?? [];
}