@remote.it/core
Version:
Core remote.it JavasScript/TypeScript library
17 lines (16 loc) • 559 B
TypeScript
export declare class Tools {
/**
* Installs all required tools no matter if they exist or
* not. This behavior is useful if you'd like to install
* the latest versions of the tools (e.g. upgrade/update).
*/
static install(): Promise<void>
/**
* Only install tools that are missing on the system. If a tool exists,
* we skip it, no matter the version. Use .install() if you want to
* update to latest version.
*/
static installIfMissing(): Promise<void>
static uninstall(): Promise<void>
}
//# sourceMappingURL=Tools.d.ts.map