UNPKG

@oaklean/windows-sensorinterface

Version:

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

8 lines (7 loc) 413 B
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): Promise<void>; }