Jiarenxiang | 38dcb05 | 2025-03-13 16:40:09 +0800 | [diff] [blame^] | 1 | // @ts-ignore |
2 | /* eslint-disable */ | ||||
3 | import { request } from '@umijs/max'; | ||||
4 | |||||
5 | /** 此处后端没有提供注释 GET /api/notices */ | ||||
6 | export async function getNotices(options?: { [key: string]: any }) { | ||||
7 | return request<API.NoticeIconList>('/api/notices', { | ||||
8 | method: 'GET', | ||||
9 | ...(options || {}), | ||||
10 | }); | ||||
11 | } |