添加8.9页面

This commit is contained in:
xianyi
2025-11-20 17:06:56 +08:00
parent 8aa5f7802f
commit 852239d5b7
15 changed files with 2422 additions and 157 deletions

10
src/electron.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
// Electron API 类型声明
interface ElectronAPI {
fetchPdf: (pdfUrl: string) => Promise<{ success: boolean; data?: string; error?: string }>;
printPdf: (pdfUrl: string) => Promise<{ success: boolean; error?: string }>;
}
interface Window {
electronAPI?: ElectronAPI;
}