This repository was archived by the owner on Aug 28, 2026. It is now read-only.
Seeking clarifications using the Electron provider #2868
Unanswered
Luke Westfall (lwestfall)
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi all,
I'm looking to implement the Electron provider into an existing application. Going through the tutorial on MSDN and the sample, I'm running into some issues.
"skipLibCheck": true,to my tsconfig.json, but this seems like more of a band-aid versus an ideal solution.webContents.getPrintersAsync()call. The error message readsProperty 'getPrintersAsync' does not exist on type 'WebContents'. Did you mean 'getPrinters'?I believe this has to do with the Electron MSAL provider using a very old Electron version. For reference I'm on 24.8.1, which is itself outdated for reasons. The provider uses ^11.0.2 which is presumably older than the appearance ofgetPrintersAsync().My questions:
skipLibCheck?Unfortunately the app I'm working with is proprietary so I can't share the source here, however I could probably whip up a repro if it will help, just let me know.
Type definition conflict errors (there are many more than this, but this is one sample):
All reactions