minishouyin/node_modules/app-builder-lib/out/electron/electronVersion.d.ts

9 lines
437 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
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>;