mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-01-09 19:53:21 +00:00
changes for blur_nsfw/auto_expand (#162)
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
parent
b010b2f9b4
commit
0c1483f9fd
2 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,8 @@ export interface LocalUser {
|
||||||
person_id: PersonId;
|
person_id: PersonId;
|
||||||
email?: string;
|
email?: string;
|
||||||
show_nsfw: boolean;
|
show_nsfw: boolean;
|
||||||
|
blur_nsfw: boolean;
|
||||||
|
auto_expand: boolean;
|
||||||
theme: string;
|
theme: string;
|
||||||
default_sort_type: SortType;
|
default_sort_type: SortType;
|
||||||
default_listing_type: ListingType;
|
default_listing_type: ListingType;
|
||||||
|
|
|
@ -5,6 +5,8 @@ import type { SortType } from "./SortType";
|
||||||
|
|
||||||
export interface SaveUserSettings {
|
export interface SaveUserSettings {
|
||||||
show_nsfw?: boolean;
|
show_nsfw?: boolean;
|
||||||
|
blur_nsfw?: boolean;
|
||||||
|
auto_expand?: boolean;
|
||||||
show_scores?: boolean;
|
show_scores?: boolean;
|
||||||
theme?: string;
|
theme?: string;
|
||||||
default_sort_type?: SortType;
|
default_sort_type?: SortType;
|
||||||
|
|
Loading…
Reference in a new issue