diff --git a/.circleci/config.yml b/.circleci/config.yml index 666516c..c68ffca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,13 +26,6 @@ jobs: - image: circleci/node:14-browsers <<: *steps-test - test-electron-11: - docker: - - image: circleci/node:14-browsers - environment: - ELECTRON_VERSION: 11.x - <<: *steps-test - test-electron-12: docker: - image: circleci/node:14-browsers @@ -53,7 +46,6 @@ workflows: test_and_release: jobs: - test-electron-13 - - test-electron-11 - test-electron-12 - release: requires: diff --git a/index.d.ts b/index.d.ts index 7fa3a25..26836fb 100644 --- a/index.d.ts +++ b/index.d.ts @@ -39,7 +39,7 @@ export var ipcMain: Electron.IpcMain; export var Menu: typeof Electron.Menu; export var MenuItem: typeof Electron.MenuItem; export var MessageChannelMain: typeof Electron.MessageChannelMain; -export var nativeImage: typeof Electron.NativeImage; +export var nativeImage: typeof Electron.nativeImage; export var nativeTheme: Electron.NativeTheme; export var net: Electron.Net; export var netLog: Electron.NetLog; @@ -54,8 +54,8 @@ export var shell: Electron.Shell; export var systemPreferences: Electron.SystemPreferences; export var TouchBar: typeof Electron.TouchBar; export var Tray: typeof Electron.Tray; -export var webContents: typeof Electron.WebContents; -export var webFrameMain: typeof Electron.WebFrameMain; +export var webContents: typeof Electron.webContents; +export var webFrameMain: typeof Electron.webFrameMain; // Taken from `Remote` export function getCurrentWebContents(): Electron.WebContents; diff --git a/tsconfig.json b/tsconfig.json index e60de47..34e00ca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,5 @@ "strict": true, "esModuleInterop": true }, - "exclude": ["dist", "index.d.ts", "main", "renderer"] + "exclude": ["dist", "main", "renderer"] }