[electron-load-devtool] Update to v1.2 (#42218)

* [electron-load-devtool] GitHub username change (@prince0203 -> @ciffelia)

* [electron-load-devtool] Format code

* [electron-load-devtool] Update to v1.2
This commit is contained in:
Ciffelia
2020-02-11 01:38:05 +09:00
committed by GitHub
parent ea0d6d6fd8
commit d6a734bdcc
2 changed files with 9 additions and 7 deletions

View File

@@ -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',
});

View File

@@ -1,6 +1,6 @@
// Type definitions for electron-load-devtool 1.0
// Project: https://github.com/akameco/electron-load-devtool#readme
// Definitions by: prince <https://github.com/prince0203>
// Type definitions for electron-load-devtool 1.2
// Project: https://github.com/akameco/electron-load-devtool
// Definitions by: Ciffelia <https://github.com/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 {