File size: 432 Bytes
77b0e0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { request_handler, type ResultPackage } from '@/api/base'
interface SystemPluginsInfo {
plugin_name: string
describe: string
avatar_color: string
enabled: boolean
}
// 删除特定主播信息
const getSystemPluginsInfoRequest = () => {
return request_handler<ResultPackage<SystemPluginsInfo[]>>({
method: 'GET',
url: '/plugins_info'
})
}
export { type SystemPluginsInfo, getSystemPluginsInfoRequest }
|