mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-01-22 09:55:52 +00:00
33 lines
1 KiB
TypeScript
33 lines
1 KiB
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { ListingType } from "./ListingType";
|
|
import type { LocalUserId } from "./LocalUserId";
|
|
import type { PersonId } from "./PersonId";
|
|
import type { PostListingMode } from "./PostListingMode";
|
|
import type { SortType } from "./SortType";
|
|
|
|
export interface LocalUser {
|
|
id: LocalUserId;
|
|
person_id: PersonId;
|
|
email?: string;
|
|
show_nsfw: boolean;
|
|
theme: string;
|
|
default_sort_type: SortType;
|
|
default_listing_type: ListingType;
|
|
interface_language: string;
|
|
show_avatars: boolean;
|
|
send_notifications_to_email: boolean;
|
|
show_scores: boolean;
|
|
show_bot_accounts: boolean;
|
|
show_read_posts: boolean;
|
|
email_verified: boolean;
|
|
accepted_application: boolean;
|
|
open_links_in_new_tab: boolean;
|
|
blur_nsfw: boolean;
|
|
auto_expand: boolean;
|
|
infinite_scroll_enabled: boolean;
|
|
admin: boolean;
|
|
post_listing_mode: PostListingMode;
|
|
totp_2fa_enabled: boolean;
|
|
enable_keyboard_navigation: boolean;
|
|
enable_animated_images: boolean;
|
|
}
|