chore(server/utils): improve types for getNoteTitle

This commit is contained in:
Panagiotis Papadopoulos 2025-01-31 08:46:56 +01:00
parent b812e67794
commit c15e46bf25

View File

@ -9,7 +9,7 @@ import mimeTypes from "mime-types";
import path from "path";
import { fileURLToPath } from "url";
import { dirname, join } from "path";
//import type { NoteType } from "../rows.js";
import type NoteMeta from "./meta/note_meta.js";
const randtoken = generator({ source: "crypto" });
@ -181,7 +181,7 @@ export function removeTextFileExtension(filePath: string) {
}
}
export function getNoteTitle(filePath: string, replaceUnderscoresWithSpaces: boolean, noteMeta?: { title?: string }) {
export function getNoteTitle(filePath: string, replaceUnderscoresWithSpaces: boolean, noteMeta?: NoteMeta) {
if (noteMeta?.title) {
return noteMeta.title;
} else {