-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypes.ts
29 lines (28 loc) · 1.03 KB
/
types.ts
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
/* eslint-disable @typescript-eslint/naming-convention */
export enum Commands {
'CopyIp' = 'StatsBar.CopyIp',
'EnableAll' = 'StatsBar.EnableAll',
'DisableAll' = 'StatsBar.DisableAll',
'EnableCpuLoad' = 'StatsBar.EnableCpuLoad',
'DisableCpuLoad' = 'StatsBar.DisableCpuLoad',
'EnableNetworkSpeed' = 'StatsBar.EnableNetworkSpeed',
'DisableNetworkSpeed' = 'StatsBar.DisableNetworkSpeed',
'EnableLoadavg' = 'StatsBar.EnableLoadavg',
'DisableLoadavg' = 'StatsBar.DisableLoadavg',
'EnableMemoUsage' = 'StatsBar.EnableMemoUsage',
'DisableMemoUsage' = 'StatsBar.DisableMemoUsage',
'EnableUptime' = 'StatsBar.EnableUptime',
'DisableUptime' = 'StatsBar.DisableUptime'
}
export enum ConfigurationKeys {
RefreshInterval = 'refreshInterval',
Location = 'location',
Priority = 'priority',
Modules = 'modules',
AllEnabled = 'enabled',
CpuLoadFormat = 'cpuLoad.format',
LoadavgFormat = 'loadavg.format',
NetworkSpeedFormat = 'networkSpeed.format',
MemoUsageFormat = 'memoUsage.format',
UptimeFormat = 'uptime.format'
}