From 39d74fe7cfcf62f85820507749d2e11f390a51f7 Mon Sep 17 00:00:00 2001 From: Alexander T Date: Fri, 1 Nov 2019 19:46:19 +0200 Subject: [PATCH] systeminformation: Provides its own types (#39553) --- notNeededPackages.json | 6 + types/systeminformation/index.d.ts | 508 ------------------ .../systeminformation-tests.ts | 50 -- types/systeminformation/tsconfig.json | 23 - types/systeminformation/tslint.json | 3 - 5 files changed, 6 insertions(+), 584 deletions(-) delete mode 100644 types/systeminformation/index.d.ts delete mode 100644 types/systeminformation/systeminformation-tests.ts delete mode 100644 types/systeminformation/tsconfig.json delete mode 100644 types/systeminformation/tslint.json diff --git a/notNeededPackages.json b/notNeededPackages.json index 7e0b39052c..7124db2b79 100644 --- a/notNeededPackages.json +++ b/notNeededPackages.json @@ -4362,6 +4362,12 @@ "sourceRepoURL": "https://github.com/t4t5/sweetalert/", "asOfVersion": "2.0.4" }, + { + "libraryName": "systeminformation", + "typingsPackageName": "systeminformation", + "sourceRepoURL": "https://github.com/sebhildebrandt/systeminformation", + "asOfVersion": "3.54.0" + }, { "libraryName": "Tabris.js", "typingsPackageName": "tabris", diff --git a/types/systeminformation/index.d.ts b/types/systeminformation/index.d.ts deleted file mode 100644 index 0ebeb16f96..0000000000 --- a/types/systeminformation/index.d.ts +++ /dev/null @@ -1,508 +0,0 @@ -// Type definitions for systeminformation 3.23 -// Project: https://github.com/sebhildebrandt/systeminformation -// Definitions by: PixelCrab -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - -export function version(): string; - -export function time(): Systeminformation.TimeData; - -export function system(cb?: (data: Systeminformation.SystemData) => any): Promise; - -export function cpu(cb?: (data: Systeminformation.CpuData) => any): Promise; - -export function cpuFlags(cb?: (data: string) => any): Promise; - -export function cpuCache(cb?: (data: Systeminformation.CpuCacheData) => any): Promise; - -export function cpuCurrentspeed(cb?: (data: Systeminformation.CpuCurrentSpeedData) => any): Promise; - -export function cpuTemperature(cb?: (data: Systeminformation.CpuTemperatureData) => any): Promise; - -export function mem(cb?: (data: Systeminformation.MemData) => any): Promise; - -export function memLayout(cb?: (data: Systeminformation.MemLayoutData) => any): Promise; - -export function diskLayout(cb?: (data: Systeminformation.DiskLayoutData) => any): Promise; - -export function battery(cb?: (data: Systeminformation.BatteryData) => any): Promise; - -export function graphics(cb?: (data: Systeminformation.GraphicsData) => any): Promise; - -export function osInfo(cb?: (data: Systeminformation.OsData) => any): Promise; - -export function versions(cb?: (data: Systeminformation.VersionData) => any): Promise; - -export function shell(cb?: (data: string) => any): Promise; - -export function users(cb?: (data: Systeminformation.UserData[]) => any): Promise; - -export function fsSize(cb?: (data: Systeminformation.FsSizeData[]) => any): Promise; - -export function blockDevices(cb?: (data: Systeminformation.BlockDevicesData[]) => any): Promise; - -export function fsStats(cb?: (data: Systeminformation.FsStatsData) => any): Promise; - -export function disksIO(cb?: (data: Systeminformation.DisksIoData) => any): Promise; - -export function networkInterfaces(cb ?: (data: Systeminformation.NetInterfacesData[]) => any): Promise; - -export function networkInterfaceDefault(cb ?: (data: string) => any): Promise; - -export function networkStats(iface?: string, cb?: (data: Systeminformation.NetStatsData) => any): Promise; - -export function networkConnections(cb?: (data: Systeminformation.NetConnectionsData[]) => any): Promise; - -export function inetChecksite(url: string, cb?: (data: Systeminformation.NetChecksiteData) => any): Promise; - -export function inetLatency(host?: string, cb?: (data: number) => any): Promise; - -export function currentLoad(cb?: (data: Systeminformation.CurrentLoadData) => any): Promise; - -export function fullLoad(cb?: (data: number) => any): Promise; - -export function processes(cb?: (data: Systeminformation.ProcessesData) => any): Promise; - -export function processLoad(processName: string, cb?: (data: Systeminformation.ProcessesProcessLoadData) => any): Promise; - -export function services(serviceName: string, cb?: (data: Systeminformation.ServicesData[]) => any): Promise; - -export function dockerContainers(all?: boolean, cb?: (data: Systeminformation.DockerContainerData[]) => any): Promise; - -export function dockerContainerStats(id?: string, cb?: (data: any) => any): Promise; - -export function dockerContainerProcesses(id?: string, cb?: (data: any) => any): Promise; - -export function dockerAll(cb?: (data: any) => any): Promise; - -export function getStaticData(cb?: (data: Systeminformation.StaticData) => any): Promise; - -export function getDynamicData(srv?: string, iface?: string, cb?: (data: any) => any): Promise; - -export function getAllData(srv?: string, iface?: string, cb?: (data: any) => any): Promise; - -export namespace Systeminformation { - interface StaticData { - version: string; - system: SystemData; - os: OsData; - versions: VersionData; - cpu: CpuData; - graphics: GraphicsData; - net: NetInterfacesData[]; - memLayout: MemLayoutData[]; - diskLayout: DiskLayoutData[]; - } - - interface TimeData { - current: string; - uptime: string; - timezone: string; - timezoneName: string; - } - - interface SystemData { - manufacturer: string; - model: string; - version: string; - serial: string; - uuid: string; - } - - interface CpuData { - manufacturer: string; - brand: string; - vendor: string; - family: string; - model: string; - stepping: string; - revision: string; - speed: string; - speedmin: string; - speedmax: string; - cores: number; - cache: CpuCacheData; - flags: string; - } - - interface CpuCacheData { - l1d: number; - l1i: number; - l2: number; - l3: number; - } - - interface CpuCurrentSpeedData { - avg: string; - min: string; - max: string; - } - - interface CpuTemperatureData { - main: string; - cores: string; - max: string; - } - - interface MemData { - total: number; - free: number; - used: number; - active: number; - available: number; - buffcache: number; - swaptotal: number; - swapused: number; - swapfree: number; - } - - interface MemLayoutData { - size: number; - bank: string; - type: string; - clockSpeed: number; - formFactor: string; - partNum: string; - serialNum: string; - voltageConfigured: number; - voltageMin: number; - voltageMax: number; - } - - interface DiskLayoutData { - type: string; - name: string; - vendor: string; - size: number; - bytesPerSector: number; - totalCylinders: number; - totalHeads: number; - totalSectors: number; - totalTracks: number; - tracksPerCylinder: number; - sectorsPerTrack: number; - firmwareRevision: string; - serialNum: string; - interfaceType: string; - } - - interface BatteryData { - hasbatter: boolean; - cyclecount: number; - ischarging: boolean; - maxcapacity: number; - currentcapacity: number; - percent: number; - } - - interface GraphicsData { - controllers: GraphicsControllerInfo[]; - displays: GraphicsDisplayInfo[]; - } - - interface GraphicsControllerInfo { - vendor: string; - model: string; - bus: string; - vram: number; - vramDynamic: boolean; - } - - interface GraphicsDisplayInfo { - connection: string; - main: boolean; - builtin: boolean; - model: string; - resolutionx: number; - resolutiony: number; - sizex: number; - sizey: number; - pixeldepth: number; - } - - interface OsData { - platform: string; - distro: string; - release: string; - codename: string; - kernel: string; - arch: string; - hostname: string; - logofile: string; - } - - interface VersionData { - kernel: string; - node: string; - v8: string; - npm: string; - pm2: string; - openssl: string; - } - - interface UserData { - user: string; - tty: string; - date: string; - time: string; - ip: string; - command: string; - } - - interface FsSizeData { - fs: string; - type: string; - size: number; - used: number; - use: number; - mount: string; - } - - interface BlockDevicesData { - name: string; - type: string; - fstype: string; - mount: string; - size: number; - physical: string; - uuid: string; - label: string; - model: string; - serial: string; - removable: boolean; - protocol: string; - } - - interface FsStatsData { - rx: number; - wx: number; - tx: number; - rx_sec: number; - wx_sec: number; - tx_sec: number; - ms: number; - } - - interface DisksIoData { - rIO: number; - wIO: number; - tIO: number; - rIO_sec: number; - wIO_sec: number; - tIO_sec: number; - ms: number; - } - - interface NetInterfacesData { - iface: string; - ip4: string; - ip6: string; - mac: string; - internal: boolean; - } - - interface NetStatsData { - iface: string; - rx: number; - tx: number; - rx_sec: number; - tx_sec: number; - ms: number; - } - - interface NetConnectionsData { - protocol: string; - localaddress: string; - localport: string; - peeraddress: string; - peerport: string; - state: string; - } - - interface NetChecksiteData { - url: string; - ok: boolean; - status: number; - ms: number; - } - - interface CurrentLoadData { - avgload: number; - currentload: number; - currentload_user: number; - currentload_nice: number; - currentload_system: number; - currentload_irq: number; - cpus: CurrentLoadCpuData[]; - } - - interface CurrentLoadCpuData { - load: number; - load_user: number; - load_nice: number; - load_system: number; - load_irq: number; - } - - interface ProcessesData { - all: number; - running: number; - blocked: number; - sleeping: number; - list: ProcessesProcessData[]; - } - - interface ProcessesProcessData { - pid: number; - pcpu: number; - pcpuu: number; - pcpus: number; - pmem: number; - priority: number; - mem_vsz: number; - mem_rss: number; - nice: number; - started: string; - state: string; - tty: string; - user: string; - command: string; - name: string; - } - - interface ProcessesProcessLoadData { - proc: string; - pid: number; - cpu: number; - mem: number; - } - - interface ServicesData { - name: string; - running: boolean; - pcpu: number; - pmem: number; - } - - interface DockerContainerData { - id: string; - name: string; - image: string; - imageID: string; - command: string; - created: number; - state: string; - ports: number[]; - mounts: DockerContainerMountData[]; - } - - interface DockerContainerMountData { - Type: string; - Source: string; - Destination: string; - Mode: string; - RW: boolean; - Propagation: string; - } - - interface DockerContainerStatsData { - id: string; - mem_usage: number; - mem_limit: number; - mem_percent: number; - cpu_percent: number; - netIO: { - rx: number; - wx: number; - }; - blockIO: { - r: number; - w: number; - }; - cpu_stats: { - cpu_usage: { - total_usage: number; - usage_in_kernelmode: number; - usage_in_usermode: number; - }, - throttling_data: { - periods: number; - throttled_periods: number; - throttled_time: number; - } - }; - precpu_stats: { - cpu_usage: { - total_usage: number; - usage_in_kernelmode: number; - usage_in_usermode: number; - }, - throttling_data: { - periods: number; - throttled_periods: number; - throttled_time: number; - } - }; - memory_stats: { - usage: number; - max_usage: number; - stats: { - active_anon: number; - active_file: number; - cache: number; - dirty: number; - hierarchical_memory_limit: number; - inactive_anon: number; - inactive_file: number; - mapped_file: number; - pgfault: number; - pgmajfault: number; - pgpgin: number; - pgpgout: number; - rss: number; - rss_huge: number; - total_active_anon: number; - total_active_file: number; - total_cache: number; - total_dirty: number; - total_inactive_anon: number; - total_inactive_file: number; - total_mapped_file: number; - total_pgfault: number; - total_pgmajfault: number; - total_pgpgin: number; - total_pgpgout: number; - total_rss: number; - total_rss_huge: number; - total_unevictable: number; - total_writeback: number; - unevictable: number; - writeback: number; - }, - limit: number; - }; - networks: any; - } - - interface DockerContainerAllData extends DockerContainerData, DockerContainerStatsData { - pids: number; - processes: DockerContainerStatsProcessesData[]; - } - - interface DockerContainerStatsProcessesData { - pid_host: string; - ppid: string; - pgid: string; - user: string; - ruser: string; - group: string; - rgroup: string; - stat: string; - time: string; - elapsed: string; - nice: string; - rss: string; - vsz: string; - command: string; - } -} diff --git a/types/systeminformation/systeminformation-tests.ts b/types/systeminformation/systeminformation-tests.ts deleted file mode 100644 index fe431a1131..0000000000 --- a/types/systeminformation/systeminformation-tests.ts +++ /dev/null @@ -1,50 +0,0 @@ -import * as systeminformation from "systeminformation"; - -systeminformation.version(); // $ExpectType string -systeminformation.time(); // $ExpectType TimeData -systeminformation.system(); // $ExpectType Promise -systeminformation.cpu(); // $ExpectType Promise -systeminformation.cpuFlags(); // $ExpectType Promise -systeminformation.cpuCache(); // $ExpectType Promise -systeminformation.cpuCurrentspeed(); // $ExpectType Promise -systeminformation.cpuTemperature(); // $ExpectType Promise -systeminformation.mem(); // $ExpectType Promise -systeminformation.memLayout(); // $ExpectType Promise -systeminformation.diskLayout(); // $ExpectType Promise -systeminformation.battery(); // $ExpectType Promise -systeminformation.graphics(); // $ExpectType Promise -systeminformation.osInfo(); // $ExpectType Promise - -systeminformation.versions() - .then((versions) => { - versions.kernel; // $ExpectType string - versions.node; // $ExpectType string - versions.npm; // $ExpectType string - versions.openssl; // $ExpectType string - versions.pm2; // $ExpectType string - versions.v8; // $ExpectType string - }); - -systeminformation.shell(); // $ExpectType Promise -systeminformation.users(); // $ExpectType Promise -systeminformation.fsSize(); // $ExpectType Promise -systeminformation.blockDevices(); // $ExpectType Promise -systeminformation.fsStats(); // $ExpectType Promise -systeminformation.disksIO(); // $ExpectType Promise -systeminformation.networkInterfaces(); // $ExpectType Promise -systeminformation.networkInterfaceDefault(); // $ExpectType Promise -systeminformation.networkStats(); // $ExpectType Promise -systeminformation.networkConnections(); // $ExpectType Promise -systeminformation.inetChecksite('http://www.google.at'); // $ExpectType Promise -systeminformation.currentLoad(); // $ExpectType Promise -systeminformation.fullLoad(); // $ExpectType Promise -systeminformation.processes(); // $ExpectType Promise -// systeminformation.processLoad(); // $ExpectType Promise -// systeminformation.services(); // $ExpectType Promise -systeminformation.dockerContainers(); // $ExpectType Promise -// systeminformation.dockerContainerStats(); // $ExpectType Promise -// systeminformation.dockerContainerProcesses(); // $ExpectType Promise -systeminformation.dockerAll(); // $ExpectType Promise -systeminformation.getStaticData(); // $ExpectType Promise -systeminformation.getDynamicData(); // $ExpectType Promise -systeminformation.getAllData(); // $ExpectType Promise diff --git a/types/systeminformation/tsconfig.json b/types/systeminformation/tsconfig.json deleted file mode 100644 index d1b0e46f7a..0000000000 --- a/types/systeminformation/tsconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "lib": [ - "es6" - ], - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - "strictFunctionTypes": true, - "baseUrl": "../", - "typeRoots": [ - "../" - ], - "types": [], - "noEmit": true, - "forceConsistentCasingInFileNames": true - }, - "files": [ - "index.d.ts", - "systeminformation-tests.ts" - ] -} \ No newline at end of file diff --git a/types/systeminformation/tslint.json b/types/systeminformation/tslint.json deleted file mode 100644 index d88586e5bd..0000000000 --- a/types/systeminformation/tslint.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "dtslint/dt.json" -}