chore(pdf): create dedicated class for pdf export

This commit is contained in:
Elian Doran 2025-02-01 16:56:12 +02:00
parent 4b3772f540
commit eb06b36d73
No known key found for this signature in database

View File

@ -0,0 +1,10 @@
import type BBranch from "../../becca/entities/bbranch.js";
import type TaskContext from "../task_context.js";
function exportSingleNoteToPdf(taskContext: TaskContext, branch: BBranch, res: Response) {
// TODO
taskContext.increaseProgressCount();
taskContext.taskSucceeded();
}