mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
8 lines
290 B
TypeScript
8 lines
290 B
TypeScript
|
|
export type Preferences = {
|
||
|
|
"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;
|
||
|
|
};
|