vaporwaver-ts
Version:
TypeScript version of the Vaporwaver Python library. Vaporwaver is a Python library for generating vaporwave image art.
16 lines (15 loc) • 559 B
TypeScript
export declare class DependencyError extends Error {
readonly details: any;
constructor(message: string, details?: any);
}
export declare class DependencyChecker {
private static pythonCommand;
private static pipCommand;
static checkPython(minVersion?: string): Promise<void>;
static checkPythonDependencies(): Promise<void>;
private static getPythonVersion;
private static getInstalledPythonPackages;
private static installMissingDependencies;
private static tryInstallMethod;
private static isVersionSatisfied;
}