UNPKG

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