UNPKG

@overwolf/ow-app-builder-lib

Version:
9 lines (8 loc) 445 B
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 getOriginalElectronVersionFromInstalled(projectDir: string): Promise<string | null>; export declare function getElectronPackage(projectDir: string): Promise<any>;