16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
import { ProcessInfoImpl } from '@/core/process/impl/ProcessInfoImpl.ts'
|
|
|
|
export const DesktopProcessInfo = new ProcessInfoImpl({
|
|
name: 'desktop',
|
|
title: '桌面',
|
|
version: {
|
|
company: 'XZG',
|
|
major: 1,
|
|
minor: 0,
|
|
build: 0,
|
|
private: 0
|
|
},
|
|
singleton: true,
|
|
isJustProcess: true
|
|
})
|