Custom template slash commands
This commit is contained in:
+9
-7
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user