askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
15 lines (14 loc) • 435 B
TypeScript
import http from 'http';
import https from 'https';
declare enum SupportedPlatform {
DARWIN = "darwin",
LINUX = "linux",
WIN32 = "win32"
}
export declare function platform(): SupportedPlatform;
export declare function getBinaryFilePath(version: string): string;
export declare function downloadServerBinaries(binaryVersion: string, proxyAgent?: {
http: http.Agent;
https: https.Agent;
}): Promise<void>;
export {};