86133 | aaa3f5d | 2025-04-20 21:33:29 +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 | } |