lemmy-js-client 0.19.0-alpha.10 → 0.19.0-alpha.11
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,6 @@
|
|
1
1
|
import type { LanguageId } from "./LanguageId";
|
2
2
|
import type { ListingType } from "./ListingType";
|
3
|
+
import type { PostListingMode } from "./PostListingMode";
|
3
4
|
import type { SortType } from "./SortType";
|
4
5
|
export interface SaveUserSettings {
|
5
6
|
show_nsfw?: boolean;
|
@@ -25,5 +26,7 @@ export interface SaveUserSettings {
|
|
25
26
|
discussion_languages?: Array<LanguageId>;
|
26
27
|
open_links_in_new_tab?: boolean;
|
27
28
|
infinite_scroll_enabled?: boolean;
|
29
|
+
post_listing_mode?: PostListingMode;
|
28
30
|
enable_keyboard_navigation?: boolean;
|
31
|
+
enable_animated_images?: boolean;
|
29
32
|
}
|
package/package.json
CHANGED