server/types/entities/preferences.ts

8 lines
310 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
export interface APIPreferences {
2024-04-07 07:30:49 +02:00
"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;
2023-09-11 05:46:20 +02:00
}