返回 oh-my-ppt
index.d.ts
根目录 / src / preload / index.d.ts
1 import { ElectronAPI } from '@electron-toolkit/preload'
2
3 declare global {
4 interface Window {
5 electron: ElectronAPI & {
6 getPlatform?: () => NodeJS.Platform
7 getPathForFile?: (file: File) => string
8 }
9 }
10 }
11
11 lines TYPESCRIPT