Browse Source
- Add type checking to build scripts for production/test builds only - Fix TypeScript errors in migration service, router, and platform services - Add electronAPI type declarations for Electron platform - Remove type checking from development builds for faster hot reload - Update tsconfig.node.json to resolve configuration conflicts - Ensure type safety for production while maintaining fast development workflowpull/158/head
9 changed files with 53 additions and 15 deletions
@ -0,0 +1,13 @@ |
|||||
|
declare global { |
||||
|
interface Window { |
||||
|
electronAPI?: { |
||||
|
exportData: (fileName: string, content: string) => Promise<{ |
||||
|
success: boolean; |
||||
|
path?: string; |
||||
|
error?: string; |
||||
|
}>; |
||||
|
}; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
export {}; |
Loading…
Reference in new issue