UNPKG

@oaklean/windows-sensorinterface

Version:

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

11 lines (10 loc) 603 B
import { UnifiedPath } from '@oaklean/profiler-core'; declare const BINARY_DISTRIBUTION_PACKAGES: { win32: string; }; export type SupportedPlatforms = keyof typeof BINARY_DISTRIBUTION_PACKAGES; export declare function getPlatformSpecificBinaryDirectoryPath(platform: SupportedPlatforms): UnifiedPath; export declare function getPlatformSpecificBinaryPath(platform: SupportedPlatforms): UnifiedPath; export declare function getPlatformSpecificPackageName(platform: SupportedPlatforms): string; export declare function getPlatformSpecificDownloadLink(platform: SupportedPlatforms): string; export {};