# Installation
> `npm install --save @types/electron-devtools-installer`

# Summary
This package contains type definitions for electron-devtools-installer (https://github.com/MarshallOfSound/electron-devtools-installer).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/electron-devtools-installer.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/electron-devtools-installer/index.d.ts)
````ts
declare module "electron-devtools-installer" {
    interface ExtensionReference {
        id: string;
        electron: string;
    }

    // Default installation function
    export default function(
        extensionReference: ExtensionReference | string | Array<ExtensionReference | string>,
        forceDownload?: boolean,
    ): Promise<string>;

    // Devtools themself
    export const EMBER_INSPECTOR: ExtensionReference;
    export const REACT_DEVELOPER_TOOLS: ExtensionReference;
    export const BACKBONE_DEBUGGER: ExtensionReference;
    export const JQUERY_DEBUGGER: ExtensionReference;
    export const ANGULARJS_BATARANG: ExtensionReference;
    export const VUEJS_DEVTOOLS: ExtensionReference;
    export const REDUX_DEVTOOLS: ExtensionReference;
    export const REACT_PERF: ExtensionReference;
    export const CYCLEJS_DEVTOOL: ExtensionReference;
    export const APOLLO_DEVELOPER_TOOLS: ExtensionReference;
    export const MOBX_DEVTOOLS: ExtensionReference;
}

````

### Additional Details
 * Last updated: Mon, 06 Nov 2023 22:41:05 GMT
 * Dependencies: none

# Credits
These definitions were written by .
