server/types/entities/preferences.ts
2023-09-12 10:48:10 -10:00

8 lines
295 B
TypeScript

export interface APIPreferences {
"posting:default:visibility": "public" | "unlisted" | "private" | "direct";
"posting:default:sensitive": boolean;
"posting:default:language": string | null;
"reading:expand:media": "default" | "show_all" | "hide_all";
"reading:expand:spoilers": boolean;
}