1
0
silverbullet/plugs/template/types.ts

12 lines
372 B
TypeScript
Raw Normal View History

import { ObjectValue } from "$sb/types.ts";
export type TemplateFrontmatter = {
trigger?: string; // slash command name
2023-12-21 17:37:50 +00:00
displayName?: string;
type?: "page";
// Frontmatter can be encoded as an object (in which case we'll serialize it) or as a string
frontmatter?: Record<string, any> | string;
};
export type TemplateObject = ObjectValue<TemplateFrontmatter>;