Custom template slash commands

This commit is contained in:
Zef Hemel
2023-11-06 09:14:16 +01:00
parent 0e2a802bbd
commit 1afac0274e
16 changed files with 214 additions and 79 deletions
+9 -7
View File
@@ -8,13 +8,15 @@ export type FileMeta = {
noSync?: boolean;
};
export type PageMeta = {
name: string;
created: number;
lastModified: number;
lastOpened?: number;
perm: "ro" | "rw";
};
export type PageMeta = ObjectValue<
{
name: string;
created: string; // indexing it as a string
lastModified: string; // indexing it as a string
lastOpened?: number;
perm: "ro" | "rw";
} & Record<string, any>
>;
export type AttachmentMeta = {
name: string;