DefinitelyTyped/types/electron-load-devtool/index.d.ts
Nathan Shively-Sanders 708214ef04 Change 'export default' to 'export =', part 2 (#33823)
* Change 'export default' to 'export ='

For packages that don't actually export a 'default' property.

* 7 more packages
2019-03-12 16:36:10 -07:00

27 lines
775 B
TypeScript

// Type definitions for electron-load-devtool 1.0
// Project: https://github.com/akameco/electron-load-devtool#readme
// Definitions by: prince <https://github.com/prince0203>
// 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;
}
interface ElectronLoadDevtoolOptions {
enabled?: boolean;
name?: string;
profile?: string;
version?: string;
}
declare const electronLoadDevtool: ElectronLoadDevtool;
export = electronLoadDevtool;