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