16 lines
273 B
TypeScript
16 lines
273 B
TypeScript
|
|
declare namespace SystemConfig {
|
||
|
|
|
||
|
|
/** 软件读取的系统信息,都是存储在这边 */
|
||
|
|
type SystemConfig = {
|
||
|
|
gpu: GpuMessage
|
||
|
|
}
|
||
|
|
|
||
|
|
/** GPU信息 */
|
||
|
|
type GpuMessage = {
|
||
|
|
name?: string;
|
||
|
|
type?: string;
|
||
|
|
vender?: string;
|
||
|
|
updateTime?: Date;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|