rhysd / electron-about-window

'About This App' mini-window for Electron apps
https://www.npmjs.com/package/about-window
MIT License
413 stars 45 forks source link

Typescript error - Cannot find name AboutWindowInfo #71

Closed AxelTerizaki closed 2 years ago

AxelTerizaki commented 2 years ago

When trying to build a typescript project with the latest version (1.15.1) it breaks :


node_modules/about-window/src/index.d.ts:2:59 - error TS2304: Cannot find name 'AboutWindowInfo'.

2 export default function openAboutWindow(info_or_img_path: AboutWindowInfo | string): Electron.BrowserWindow;
                                                            ~~~~~~~~~~~~~~~

Found 1 error.```
rhysd commented 2 years ago

Is it fixed by using 1.15.0?

AxelTerizaki commented 2 years ago

Yep, reverted back to 1.15.0 and it now compiles again for me.

rhysd commented 2 years ago

ok, please keep the version until this is fixed.

rhysd commented 2 years ago

v1.15.2 should fix this.

AxelTerizaki commented 2 years ago

I confirm it works :) Thank you for the quick fix.