Hoàn thành bước 3.3. Interactive Workbook (The Core Viewer)

This commit is contained in:
2026-03-31 14:38:17 +07:00
parent 9450cd3ed4
commit c362692c51
8 changed files with 824 additions and 2 deletions
+9
View File
@@ -18,3 +18,12 @@ export interface PDFUploadResult {
pdf: PDFItem | null;
error: string | null;
}
export interface AnnotationData {
id: number;
pdf_id: number;
page_number: number;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
canvas_data: Record<string, any>;
updated_at: string;
}