跳转到主要内容
static getNoteSystemTemplates(): Promise<Template[] | null | undefined>;
返回

示例

import { PluginCommAPI } from 'sn-plugin-lib';

/**
 * 获取系统模板列表的示例。
 */
export async function exampleGetNoteSystemTemplates() {
  const templates = await PluginCommAPI.getNoteSystemTemplates();
  return templates ?? [];
}