SDK docs version: v0.1.25
Get system note templates. You can use these templates when creating note files.
static getNoteSystemTemplates(): Promise<Template[] | null | undefined>;
Template[]
Template
import { PluginCommAPI } from 'sn-plugin-lib'; /** * Example: get system note templates. */ export async function exampleGetNoteSystemTemplates() { const templates = await PluginCommAPI.getNoteSystemTemplates(); return templates ?? []; }