mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-12 03:11:10 -05:00
22 lines
552 B
TypeScript
22 lines
552 B
TypeScript
// @ts-ignore
|
|
/* eslint-disable */
|
|
import request from '@/utils/request';
|
|
|
|
/** Get subscribe list GET /v1/public/subscribe/list */
|
|
export async function querySubscribeList(
|
|
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
|
|
params: API.QuerySubscribeListParams,
|
|
options?: { [key: string]: any },
|
|
) {
|
|
return request<API.Response & { data?: API.QuerySubscribeListResponse }>(
|
|
'/v1/public/subscribe/list',
|
|
{
|
|
method: 'GET',
|
|
params: {
|
|
...params,
|
|
},
|
|
...(options || {}),
|
|
},
|
|
);
|
|
}
|