mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-23 04:41:13 +00:00
Adding animated_images boolean.
This commit is contained in:
parent
ceacfdfbe7
commit
1f4e5442bd
4 changed files with 4 additions and 2 deletions
|
@ -29,4 +29,5 @@ export interface LocalUser {
|
||||||
post_listing_mode: PostListingMode;
|
post_listing_mode: PostListingMode;
|
||||||
totp_2fa_enabled: boolean;
|
totp_2fa_enabled: boolean;
|
||||||
enable_keyboard_navigation: boolean;
|
enable_keyboard_navigation: boolean;
|
||||||
|
enable_animated_images: boolean;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,5 @@ export interface ModRemoveCommunity {
|
||||||
community_id: CommunityId;
|
community_id: CommunityId;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
removed: boolean;
|
removed: boolean;
|
||||||
expires?: string;
|
|
||||||
when_: string;
|
when_: string;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,5 +5,4 @@ export interface RemoveCommunity {
|
||||||
community_id: CommunityId;
|
community_id: CommunityId;
|
||||||
removed: boolean;
|
removed: boolean;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
expires?: /* integer */ number;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||||
import type { LanguageId } from "./LanguageId";
|
import type { LanguageId } from "./LanguageId";
|
||||||
import type { ListingType } from "./ListingType";
|
import type { ListingType } from "./ListingType";
|
||||||
|
import type { PostListingMode } from "./PostListingMode";
|
||||||
import type { SortType } from "./SortType";
|
import type { SortType } from "./SortType";
|
||||||
|
|
||||||
export interface SaveUserSettings {
|
export interface SaveUserSettings {
|
||||||
|
@ -27,5 +28,7 @@ export interface SaveUserSettings {
|
||||||
discussion_languages?: Array<LanguageId>;
|
discussion_languages?: Array<LanguageId>;
|
||||||
open_links_in_new_tab?: boolean;
|
open_links_in_new_tab?: boolean;
|
||||||
infinite_scroll_enabled?: boolean;
|
infinite_scroll_enabled?: boolean;
|
||||||
|
post_listing_mode?: PostListingMode;
|
||||||
enable_keyboard_navigation?: boolean;
|
enable_keyboard_navigation?: boolean;
|
||||||
|
enable_animated_images?: boolean;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue