import { type Preference } from "../../entities/v1/index.js"; import { type Method } from "../../method.js"; export interface PreferencesResource { /** * Preferences defined by the user in their account settings. * @return Preferences by key and value * @see https://docs.joinmastodon.org/methods/accounts/preferences/ */ fetch: Method; } /** @deprecated Use `PreferencesResource` instead. */ export type PreferenceRepository = PreferencesResource;