From b2b290b69b8a9bcb3273846a764a6483ecfa25b7 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 9 Jan 2024 22:00:00 -0500 Subject: [PATCH] Use string type instead of any for exportSettings. Fixes #229 (#230) --- src/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.ts b/src/http.ts index ae5f959c..5859908d 100644 --- a/src/http.ts +++ b/src/http.ts @@ -243,7 +243,7 @@ export class LemmyHttp { * `HTTP.GET /user/export_settings` */ exportSettings() { - return this.#wrapper( + return this.#wrapper( HttpType.Get, "/user/export_settings", {},