We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d6cb2 commit 8aa4120Copy full SHA for 8aa4120
client/src/api/index.ts
@@ -102,7 +102,7 @@ export const apiService = {
102
103
// 获取告警规则变更记录
104
getAlertRuleChangelog: (start?: string, limit?: number) => {
105
- const params: any = {}
+ const params: { start?: string; limit?: number } = {}
106
if (start) params.start = start
107
if (limit) params.limit = limit
108
return api.get('/v1/changelog/alertrules', { params })
0 commit comments