DefinitelyTyped/types/electron-load-devtool/index.d.ts
Ciffelia d6a734bdcc
[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
2020-02-10 08:38:05 -08:00

28 lines
801 B
TypeScript

// 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 {
(devtoolId: string, options?: ElectronLoadDevtoolOptions): void;
REDUX_DEVTOOLS: string;
EMBER_INSPECTOR: string;
REACT_DEVELOPER_TOOLS: string;
BACKBONE_DEBUGGER: string;
JQUERY_DEBUGGER: string;
ANGULARJS_BATARANG: string;
VUEJS_DEVTOOLS: string;
VUEJS_DEVTOOLS_BETA: string;
}
interface ElectronLoadDevtoolOptions {
enabled?: boolean;
name?: string;
profile?: string;
version?: string;
}
declare const electronLoadDevtool: ElectronLoadDevtool;
export = electronLoadDevtool;