From 4276e0675f05ec870c9ad26d6df6dbd775555963 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Sat, 11 Sep 2021 14:38:49 -0600 Subject: [PATCH] fix type --- ui/src/app/services/api/api.types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/services/api/api.types.ts b/ui/src/app/services/api/api.types.ts index ad74ca6e8..c5d7868ac 100644 --- a/ui/src/app/services/api/api.types.ts +++ b/ui/src/app/services/api/api.types.ts @@ -24,7 +24,7 @@ export module RR { // server - export type SetShareStatsReq = WithExpire<{ value: any }> // server.config.share-stats + export type SetShareStatsReq = WithExpire<{ value: boolean }> // server.config.share-stats export type SetShareStatsRes = WithRevision export type GetServerLogsReq = { cursor?: string, before_flag?: boolean, limit?: number }