mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 16:38:20 +01:00
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
|
|
import type { StatusVisibility } from "./status";
|
||
|
|
|
||
|
|
export type Preferences = {
|
||
|
|
"posting:default:visibility": StatusVisibility;
|
||
|
|
"posting:default:sensitive": boolean;
|
||
|
|
"posting:default:language": string | null;
|
||
|
|
"reading:expand:media": "default" | "show_all" | "hide_all";
|
||
|
|
"reading:expand:spoilers": boolean;
|
||
|
|
};
|