@@ -963,6 +963,7 @@ export function chassis(cb?: (data: Systeminformation.ChassisData) => any): Prom
963963export function time ( ) : Systeminformation . TimeData ;
964964export function osInfo ( cb ?: ( data : Systeminformation . OsData ) => any ) : Promise < Systeminformation . OsData > ;
965965export function versions ( apps ?: string , cb ?: ( data : Systeminformation . VersionData ) => any ) : Promise < Systeminformation . VersionData > ;
966+ export function versions ( cb ?: ( data : Systeminformation . VersionData ) => any ) : Promise < Systeminformation . VersionData > ;
966967export function shell ( cb ?: ( data : string ) => any ) : Promise < string > ;
967968export function uuid ( cb ?: ( data : Systeminformation . UuidData ) => any ) : Promise < Systeminformation . UuidData > ;
968969
@@ -981,6 +982,7 @@ export function battery(cb?: (data: Systeminformation.BatteryData) => any): Prom
981982export function graphics ( cb ?: ( data : Systeminformation . GraphicsData ) => any ) : Promise < Systeminformation . GraphicsData > ;
982983
983984export function fsSize ( drive ?: string , cb ?: ( data : Systeminformation . FsSizeData [ ] ) => any ) : Promise < Systeminformation . FsSizeData [ ] > ;
985+ export function fsSize ( cb ?: ( data : Systeminformation . FsSizeData [ ] ) => any ) : Promise < Systeminformation . FsSizeData [ ] > ;
984986export function fsOpenFiles ( cb ?: ( data : Systeminformation . FsOpenFilesData [ ] ) => any ) : Promise < Systeminformation . FsOpenFilesData [ ] > ;
985987export function blockDevices ( cb ?: ( data : Systeminformation . BlockDevicesData [ ] ) => any ) : Promise < Systeminformation . BlockDevicesData [ ] > ;
986988export function fsStats ( cb ?: ( data : Systeminformation . FsStatsData ) => any ) : Promise < Systeminformation . FsStatsData > ;
@@ -999,9 +1001,11 @@ export function networkInterfaces(
9991001) : Promise < Systeminformation . NetworkInterfacesData [ ] | Systeminformation . NetworkInterfacesData > ;
10001002
10011003export function networkStats ( ifaces ?: string , cb ?: ( data : Systeminformation . NetworkStatsData [ ] ) => any ) : Promise < Systeminformation . NetworkStatsData [ ] > ;
1004+ export function networkStats ( cb ?: ( data : Systeminformation . NetworkStatsData [ ] ) => any ) : Promise < Systeminformation . NetworkStatsData [ ] > ;
10021005export function networkConnections ( cb ?: ( data : Systeminformation . NetworkConnectionsData [ ] ) => any ) : Promise < Systeminformation . NetworkConnectionsData [ ] > ;
10031006export function inetChecksite ( url : string , cb ?: ( data : Systeminformation . InetChecksiteData ) => any ) : Promise < Systeminformation . InetChecksiteData > ;
10041007export function inetLatency ( host ?: string , cb ?: ( data : number ) => any ) : Promise < number > ;
1008+ export function inetLatency ( cb ?: ( data : number ) => any ) : Promise < number > ;
10051009
10061010export function wifiNetworks ( cb ?: ( data : Systeminformation . WifiNetworkData [ ] ) => any ) : Promise < Systeminformation . WifiNetworkData [ ] > ;
10071011export function wifiInterfaces ( cb ?: ( data : Systeminformation . WifiInterfaceData [ ] ) => any ) : Promise < Systeminformation . WifiInterfaceData [ ] > ;
@@ -1015,9 +1019,13 @@ export function services(serviceName: string, cb?: (data: Systeminformation.Serv
10151019
10161020export function dockerInfo ( cb ?: ( data : Systeminformation . DockerInfoData ) => any ) : Promise < Systeminformation . DockerInfoData > ;
10171021export function dockerImages ( all ?: boolean , cb ?: ( data : Systeminformation . DockerImageData [ ] ) => any ) : Promise < Systeminformation . DockerImageData [ ] > ;
1022+ export function dockerImages ( cb ?: ( data : Systeminformation . DockerImageData [ ] ) => any ) : Promise < Systeminformation . DockerImageData [ ] > ;
10181023export function dockerContainers ( all ?: boolean , cb ?: ( data : Systeminformation . DockerContainerData [ ] ) => any ) : Promise < Systeminformation . DockerContainerData [ ] > ;
1024+ export function dockerContainers ( cb ?: ( data : Systeminformation . DockerContainerData [ ] ) => any ) : Promise < Systeminformation . DockerContainerData [ ] > ;
10191025export function dockerContainerStats ( id ?: string , cb ?: ( data : Systeminformation . DockerContainerStatsData [ ] ) => any ) : Promise < Systeminformation . DockerContainerStatsData [ ] > ;
1026+ export function dockerContainerStats ( cb ?: ( data : Systeminformation . DockerContainerStatsData [ ] ) => any ) : Promise < Systeminformation . DockerContainerStatsData [ ] > ;
10201027export function dockerContainerProcesses ( id ?: string , cb ?: ( data : any ) => any ) : Promise < Systeminformation . DockerContainerProcessData [ ] > ;
1028+ export function dockerContainerProcesses ( cb ?: ( data : any ) => any ) : Promise < Systeminformation . DockerContainerProcessData [ ] > ;
10211029export function dockerVolumes ( cb ?: ( data : Systeminformation . DockerVolumeData [ ] ) => any ) : Promise < Systeminformation . DockerVolumeData [ ] > ;
10221030export function dockerAll ( cb ?: ( data : any ) => any ) : Promise < any > ;
10231031
0 commit comments