feat: add auto-load profile pictures setting (#712)
This commit is contained in:
parent
ec03a49e32
commit
6dc662bd2b
28 changed files with 170 additions and 47 deletions
6
src/types/index.d.ts
vendored
6
src/types/index.d.ts
vendored
|
|
@ -3,7 +3,8 @@ import {
|
|||
MEDIA_AUTO_LOAD_POLICY,
|
||||
NOTIFICATION_LIST_STYLE,
|
||||
NSFW_DISPLAY_POLICY,
|
||||
POLL_TYPE
|
||||
POLL_TYPE,
|
||||
PROFILE_PICTURE_AUTO_LOAD_POLICY
|
||||
} from '../constants'
|
||||
|
||||
export type TSubRequestFilter = Omit<Filter, 'since' | 'until'> & { limit: number }
|
||||
|
|
@ -211,4 +212,7 @@ export type TAwesomeRelayCollection = {
|
|||
export type TMediaAutoLoadPolicy =
|
||||
(typeof MEDIA_AUTO_LOAD_POLICY)[keyof typeof MEDIA_AUTO_LOAD_POLICY]
|
||||
|
||||
export type TProfilePictureAutoLoadPolicy =
|
||||
(typeof PROFILE_PICTURE_AUTO_LOAD_POLICY)[keyof typeof PROFILE_PICTURE_AUTO_LOAD_POLICY]
|
||||
|
||||
export type TNsfwDisplayPolicy = (typeof NSFW_DISPLAY_POLICY)[keyof typeof NSFW_DISPLAY_POLICY]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue