From 203651135403200a73861148922d2d5cf37af2b8 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 9 Jan 2024 17:58:51 -0500 Subject: [PATCH] Use string type instead of any for exportSettings. Fixes #229 --- 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", {},