refactor(ts): enable verbatim module syntax

This commit is contained in:
Elian Doran
2025-01-09 18:36:24 +02:00
parent 4cbb529fd4
commit 324696bc54
161 changed files with 244 additions and 250 deletions

View File

@@ -1,7 +1,7 @@
import AttachmentMeta from "./attachment_meta.js";
import AttributeMeta from "./attribute_meta.js";
import type AttachmentMeta from "./attachment_meta.js";
import type AttributeMeta from "./attribute_meta.js";
interface NoteMeta {
export default interface NoteMeta {
noteId?: string;
notePath?: string[];
isClone?: boolean;
@@ -22,5 +22,3 @@ interface NoteMeta {
attachments?: AttachmentMeta[];
children?: NoteMeta[];
}
export default NoteMeta;