mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-10 16:22:44 +08:00
7 lines
429 B
TypeScript
7 lines
429 B
TypeScript
import { Lazy } from "lazy-val";
|
|
import { Configuration } from "../configuration";
|
|
export type MetadataValue = Lazy<Record<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>;
|