11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { alovaInstance, type AlovaResponseType } from '@/plugin';
|
|
|
|
export function getSysInfo() {
|
|
return alovaInstance.Get<AlovaResponseType<SysInfo>>('apis/system/info');
|
|
}
|
|
|
|
export interface SysInfo {
|
|
appName: string;
|
|
appVersion: string;
|
|
}
|