1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
declare namespace TopJsSystem {
export interface NetworkInterface {
name:string,
mac:string,
address:string,
netmask:string,
}
/**
* 获取操作系统位数;'x32'|'x64'
*/
export function arch():string
/**
* 返回计算机主机名
*/
export function hostname():string
/**
* 返回计算机网卡信息
*/
export function networkInterfaces():Map<string, Array<NetworkInterface>>
/**
* 获取操作系统临时目录
*/
export function tmpdir():string
/**
* 获取操作系统当前用户HOME目录;
*/
export function homedir():string
/**
* 返回操作系统类型'windows'|'linux'|'mac'
*/
export function type():string
/**
* 获取操作系统内核类型
*/
export function kernelType():string
/**
* 获取操作系统内核版本
*/
export function kernelVersion():string
/**
* 获取操作系统版本
*/
export function version():string
/**
* 获取操作系统名称
*/
export function name():string
/**
* 获取操作系统名称2
*/
export function prettyName():string
/**
* 获取操作系统时间
*/
export function getNow():string
/**
* 获取操作系统日期
*/
export function getToday():string
}
export = TopJsSystem;