Fix electron typing again again (#7788)

This commit is contained in:
Michael Telatynski
2022-02-11 13:03:51 +00:00
committed by GitHub
parent b5e7d12f76
commit 0e3b559671

View File

@@ -109,12 +109,16 @@ declare global {
mxActiveWidgetStore?: ActiveWidgetStore;
mxSkinner?: Skinner;
mxOnRecaptchaLoaded?: () => void;
electron?: {}; // we should not rely on any fields on this in this layer
electron?: Electron;
mxSendSentryReport: (userText: string, issueUrl: string, error: Error) => Promise<void>;
mxLoginWithAccessToken: (hsUrl: string, accessToken: string) => Promise<void>;
mxAutoRageshakeStore?: AutoRageshakeStore;
}
interface Electron {
// will be extended by element-web downstream
}
interface DesktopCapturerSource {
id: string;
name: string;