mirror of
https://github.com/element-hq/element-desktop
synced 2025-03-25 18:23:36 +01:00
![renovate[bot]](/assets/img/avatar_default.png)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
19 lines
484 B
TypeScript
19 lines
484 B
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
// import "electron-devtools-installer";
|
|
|
|
declare module "electron-devtools-installer" {
|
|
interface ExtensionReference {
|
|
id: string;
|
|
electron: string;
|
|
}
|
|
|
|
export const REACT_DEVELOPER_TOOLS: ExtensionReference;
|
|
export default function install(extension: ExtensionReference): Promise<string>;
|
|
}
|