server/types/entities-2/preferences.ts
2024-04-14 00:53:21 -10:00

8 lines
310 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;
}