diff --git a/types/electron-load-devtool/electron-load-devtool-tests.ts b/types/electron-load-devtool/electron-load-devtool-tests.ts index 83b7b4240d..e558e404b3 100644 --- a/types/electron-load-devtool/electron-load-devtool-tests.ts +++ b/types/electron-load-devtool/electron-load-devtool-tests.ts @@ -7,14 +7,15 @@ loadDevtool(loadDevtool.BACKBONE_DEBUGGER); loadDevtool(loadDevtool.JQUERY_DEBUGGER); loadDevtool(loadDevtool.ANGULARJS_BATARANG); loadDevtool(loadDevtool.VUEJS_DEVTOOLS); +loadDevtool(loadDevtool.VUEJS_DEVTOOLS_BETA); loadDevtool('another-devtools-id'); loadDevtool(loadDevtool.REDUX_DEVTOOLS, { - enabled: false + enabled: false, }); loadDevtool(loadDevtool.REDUX_DEVTOOLS, { - name: 'chromium', - profile: 'another-profile-name', - version: '1.2.3' + name: 'chromium', + profile: 'another-profile-name', + version: '1.2.3', }); diff --git a/types/electron-load-devtool/index.d.ts b/types/electron-load-devtool/index.d.ts index 049166cec0..14c5868c49 100644 --- a/types/electron-load-devtool/index.d.ts +++ b/types/electron-load-devtool/index.d.ts @@ -1,6 +1,6 @@ -// Type definitions for electron-load-devtool 1.0 -// Project: https://github.com/akameco/electron-load-devtool#readme -// Definitions by: prince +// Type definitions for electron-load-devtool 1.2 +// Project: https://github.com/akameco/electron-load-devtool +// Definitions by: Ciffelia // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface ElectronLoadDevtool { @@ -12,6 +12,7 @@ interface ElectronLoadDevtool { JQUERY_DEBUGGER: string; ANGULARJS_BATARANG: string; VUEJS_DEVTOOLS: string; + VUEJS_DEVTOOLS_BETA: string; } interface ElectronLoadDevtoolOptions {