server-esm: Solve some more imports

This commit is contained in:
Elian Doran
2024-07-18 22:58:12 +03:00
parent 4ed88d28e9
commit f4d19e2bc1
11 changed files with 66 additions and 55 deletions

View File

@@ -12,6 +12,7 @@ import sanitizeAttributeName from "../sanitize_attribute_name.js";
import TaskContext from "../task_context.js";
import BNote from "../../becca/entities/bnote.js";
import { File } from "./common";
import { AttributeType } from "../../becca/entities/rows.js";
/**
* date format is e.g. 20181121T193703Z or 2013-04-14T16:19:00.000Z (Mac evernote, see #3496)
@@ -29,7 +30,7 @@ function parseDate(text: string) {
}
interface Attribute {
type: string;
type: AttributeType;
name: string;
value: string;
}