UNPKG

akf-system

Version:

A Node.js based sync system-information (GPU, RAM, etc.) fetcher. Zero dependencies.

16 lines (15 loc) 382 B
declare module "akf-system" { interface SystemInformation { Username: string; Host: string; OS: string; Build: string; Uptime: string; CPU: string; RAM: string; GPUS: string[]; Motherboard?: string; Resolution?: string; } export default function (): SystemInformation; }