chore(pdf): create dedicated class for pdf export

feature/pdf_v2
Elian Doran 2025-02-01 16:56:12 +07:00
parent 4b3772f540
commit eb06b36d73
No known key found for this signature in database
1 changed files with 10 additions and 0 deletions

@ -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();
}