UNPKG

@oaklean/windows-sensorinterface

Version:

A library that provides a binary that utilizes the LibreHardwareMonitor library to capture energy measurements on Windows

9 lines (8 loc) 435 B
/// <reference types="node" /> import { SupportedPlatforms } from '../constants/config'; export declare class InstallHelper { static makeRequest(url: string): Promise<Buffer>; static downloadPlatformSpecificBinary(platform: SupportedPlatforms): Promise<void>; static isPlatformSpecificPackageInstalled(platform: SupportedPlatforms): boolean; static installPlatformSpecificPackage(platform: SupportedPlatforms): void; }