Skip to content

Commit

Permalink
Fix types of wrapped Electron methods to return Promise
Browse files Browse the repository at this point in the history
Fixes #878, fixes #998.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Loading branch information
andersk committed Jan 11, 2022
1 parent 96b1188 commit 4e937f6
Showing 1 changed file with 16 additions and 23 deletions.
39 changes: 16 additions & 23 deletions lib/spectron.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
import * as Electron from 'electron';
import * as WebdriverIO from 'webdriverio';

type MethodsOf<T> = {
[K in keyof T]: T[K] extends (...args: any) => any ? K : never;
}[keyof T];

type MakeAsync<T> = T extends (...args: infer A) => infer R
? (...args: A) => Promise<R extends PromiseLike<infer T> ? T : R>
: never;

type MakeMethodsAsync<T> = { [K in MethodsOf<T>]: MakeAsync<T[K]> };

interface AccessibilityAuditOptions {
/**
* true to ignore failures with a severity of 'Warning' and only
Expand Down Expand Up @@ -117,30 +127,13 @@ export interface SpectronClient extends WebdriverIO.BrowserObject {
): Promise<AccessibilityAuditResult>;
}

export type SpectronWindow = {
[P in keyof Electron.BrowserWindow]: Electron.BrowserWindow[P] extends (
...args: infer A
) => infer R
? (...args: A) => Promise<R>
: undefined;
export type SpectronElectron = {
[K in keyof typeof Electron]: MakeMethodsAsync<typeof Electron[K]>;
};

export interface SpectronWebContents extends Electron.WebContents {
savePage(
fullPath: string,
saveType: 'HTMLOnly' | 'HTMLComplete' | 'MHTML',
callback?: (error: Error) => void
): boolean;
savePage(
fullPath: string,
saveType: 'HTMLOnly' | 'HTMLComplete' | 'MHTML'
): Promise<void>;
savePage(
fullPath: string,
saveType: 'HTMLOnly' | 'HTMLComplete' | 'MHTML'
): any;
executeJavaScript(code: string, userGesture?: boolean): Promise<any>;
}
export type SpectronWindow = MakeMethodsAsync<Electron.BrowserWindow>;

export type SpectronWebContents = MakeMethodsAsync<Electron.WebContents>;

type BasicAppSettings = {
/**
Expand Down Expand Up @@ -260,7 +253,7 @@ export class Application {
* Each Electron module is exposed as a property on the electron property so you can
* think of it as an alias for require('electron') from within your app.
*/
electron: Electron.RemoteMainInterface;
electron: SpectronElectron;
/**
* The browserWindow property is an alias for require('electron').remote.getCurrentWindow().
* It provides you access to the current BrowserWindow and contains all the APIs.
Expand Down

0 comments on commit 4e937f6

Please sign in to comment.