Files
Remote-Control-Center/mc_test/node_modules/app-builder-lib/out/electron/electronVersion.d.ts
2025-11-25 09:56:15 +03:00

9 lines
437 B
TypeScript
Executable File

import { Lazy } from "lazy-val";
import { Configuration } from "../configuration";
export type MetadataValue = Lazy<{
[key: string]: any;
} | null>;
export declare function getElectronVersion(projectDir: string, config?: Configuration): Promise<string>;
export declare function getElectronVersionFromInstalled(projectDir: string): Promise<string | null>;
export declare function getElectronPackage(projectDir: string): Promise<any>;