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