import type { AxiosPromise } from '@/utils/api-types'; import request from '@/utils/request'; import type { CacheVO } from './types'; // 查询缓存详细 export function getCache(): AxiosPromise { return request({ url: '/monitor/cache', method: 'get' }); }