smartsystem/ts/index.ts

11 lines
297 B
TypeScript
Raw Normal View History

2022-07-28 20:07:52 +00:00
import * as plugins from './smartsystem.plugins.js';
2016-10-06 21:00:29 +00:00
2019-08-21 23:05:21 +00:00
export class Smartsystem {
2019-08-22 13:23:09 +00:00
public env = new plugins.smartenv.Smartenv();
2019-08-22 11:01:44 +00:00
public cpus = plugins.os.cpus();
2019-09-08 13:56:50 +00:00
public network = new plugins.smartnetwork.SmartNetwork();
public get information() {
return plugins.systeminformation;
}
2016-10-14 01:24:29 +00:00
}