chore(types): missing import type for JS imports

This commit is contained in:
Elian Doran
2025-01-13 23:18:10 +02:00
parent 2fa5955bd5
commit 1807b2b031
110 changed files with 178 additions and 178 deletions

View File

@@ -5,8 +5,8 @@ import html from "html";
import { getContentDisposition, escapeHtml } from "../utils.js";
import mdService from "./md.js";
import becca from "../../becca/becca.js";
import TaskContext from "../task_context.js";
import BBranch from "../../becca/entities/bbranch.js";
import type TaskContext from "../task_context.js";
import type BBranch from "../../becca/entities/bbranch.js";
import type { Response } from "express";
function exportSingleNote(taskContext: TaskContext, branch: BBranch, format: "html" | "markdown", res: Response) {