chore(types): add type for note meta file

This commit is contained in:
Elian Doran
2025-02-02 13:55:15 +02:00
parent 5afddb4ecc
commit acbd936654
2 changed files with 11 additions and 1 deletions

View File

@@ -1,6 +1,12 @@
import type AttachmentMeta from "./attachment_meta.js";
import type AttributeMeta from "./attribute_meta.js";
export interface NoteMetaFile {
formatVersion: number;
appVersion: string;
files: NoteMeta[];
}
export default interface NoteMeta {
noteId?: string;
notePath?: string[];