forked from insin/control-panel-for-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.d.ts
More file actions
244 lines (227 loc) · 6.6 KB
/
types.d.ts
File metadata and controls
244 lines (227 loc) · 6.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
export type Config = {
enabled: boolean
debug: boolean
debugLogTimelineStats: boolean
version?: 'desktop' | 'mobile'
// Shared
addAddMutedWordMenuItem: boolean
addFocusedTweetAccountLocation: boolean
// XXX This is now more like "use the Following tab by default"
alwaysUseLatestTweets: boolean
bypassAgeVerification: boolean
defaultToLatestSearch: boolean
disableHomeTimeline: boolean
disabledHomeTimelineRedirect: 'notifications' | 'messages'
disableTweetTextFormatting: boolean
dontUseChirpFont: boolean
dropdownMenuFontWeight: boolean
fastBlock: boolean
followButtonStyle: 'monochrome' | 'themed'
hideAdsNav: boolean
hideBookmarkButton: boolean
hideBookmarkMetrics: boolean
hideBookmarksNav: boolean
hideBusinessNav: boolean
hideChatNav: boolean
hideCommunitiesNav: boolean
hideComposeTweet: boolean
hideConnectNav: boolean
hideCreatorStudioNav: boolean
hideEditImage: boolean
hideExplorePageContents: boolean
hideFollowingMetrics: boolean
hideForYouTimeline: boolean
hideGrokNav: boolean
hideGrokTweets: boolean
hideInlinePrompts: boolean
hideJobsNav: boolean
hideLikeMetrics: boolean
hideListsNav: boolean
hideMetrics: boolean
// XXX This now controls hiding all "Discover" suggestions
hideMoreTweets: boolean
hideNotificationLikes: boolean
hideNotificationRetweets: boolean
hideNotifications: 'ignore' | 'badges' | 'hide'
hideProfileRetweets: boolean
hideQuoteTweetMetrics: boolean
hideQuotesFrom: string[]
hideReplyMetrics: boolean
hideRetweetMetrics: boolean
hideSeeNewTweets: boolean
hideShareTweetButton: boolean
hideSortRepliesMenu: boolean
hideSpacesNav: boolean
hideSubscriptions: boolean
// XXX This now controls hiding profile header metrics
hideTotalTweetsMetrics: boolean
hideTwitterBlueReplies: boolean
hideTwitterBlueUpsells: boolean
hideUnavailableQuoteTweets: boolean
// XXX This now also controls hiding Verified Followers
hideVerifiedNotificationsTab: boolean
hideViewActivityLinks: boolean
hideViews: boolean
hideWhoToFollowEtc: boolean
listRetweets: 'ignore' | 'hide'
mutableQuoteTweets: boolean
mutedQuotes: QuotedTweet[]
quoteTweets: SharedTweetsConfig
redirectChatNav: boolean
redirectToTwitter: boolean
reducedInteractionMode: boolean
// XXX This now controls all replacement of X brand changes
replaceLogo: boolean
restoreLinkHeadlines: boolean
restoreQuoteTweetsLink: boolean
restoreOtherInteractionLinks: boolean
restoreTweetSource: boolean
retweets: SharedTweetsConfig
showBlueReplyFollowersCount: boolean
showBlueReplyFollowersCountAmount: string
showBookmarkButtonUnderFocusedTweets: boolean
showPremiumReplyBusiness: boolean
showPremiumReplyFollowedBy: boolean
showPremiumReplyFollowing: boolean
showPremiumReplyGovernment: boolean
sortFollowing: 'mostRecent' | 'popular' | 'ignore'
sortReplies: 'relevant' | 'recent' | 'liked'
tweakNewLayout: boolean
tweakQuoteTweetsPage: boolean
twitterBlueChecks: 'ignore' | 'replace' | 'hide'
unblurSensitiveContent: boolean
uninvertFollowButtons: boolean
// Experiments
customCss: string
// Desktop only
addUserHoverCardAccountLocation: boolean
fullWidthContent: boolean
fullWidthMedia: boolean
hideAccountSwitcher: boolean
hideExploreNav: boolean
hideExploreNavWithSidebar: boolean
hideLiveBroadcasts: boolean
hideMessagesDrawer: boolean
hideSidebarContent: boolean
hideSuggestedFollows: boolean
hideTimelineTweetBox: boolean
hideTodaysNews: boolean
hideToggleNavigation: boolean
hideWhatsHappening: boolean
navBaseFontSize: boolean
navDensity: 'default' | 'comfortable' | 'compact'
showRelevantPeople: boolean
// Mobile only
hideLiveBroadcastBar: boolean
hideMessagesBottomNavItem: boolean
preventNextVideoAutoplay: boolean
}
export type Locale = {
[K in LocaleKey]?: K extends `${string}_FN` ? (arg: any) => string : string
}
export type LocaleFunctionKey = Extract<LocaleKey, `${string}_FN`>
export type LocaleKey =
| 'ACCOUNT_BASED_IN_FN'
| 'ADD_ANOTHER_TWEET'
| 'ADD_MUTED_WORD'
| 'GROK_ACTIONS'
| 'HOME'
| 'LIKES'
| 'LIVE_ON_X'
| 'MESSAGES'
| 'MOST_RELEVANT'
| 'MUTE_THIS_CONVERSATION'
| 'POST_ALL'
| 'POST_UNAVAILABLE'
| 'PROFILE_SUMMARY'
| 'QUOTE'
| 'QUOTES'
| 'QUOTE_TWEET'
| 'QUOTE_TWEETS'
| 'RECENT'
| 'RELEVANT'
| 'REPOST'
| 'REPOSTS'
| 'RETWEET'
| 'RETWEETED_BY'
| 'RETWEETS'
| 'SHARED'
| 'SHARED_TWEETS'
| 'SHOW'
| 'SHOW_MORE_REPLIES'
| 'SORT_BY'
| 'SORT_REPLIES'
| 'TURN_OFF_QUOTE_TWEETS'
| 'TURN_OFF_RETWEETS'
| 'TURN_ON_RETWEETS'
| 'TWEET'
| 'TWEETS'
| 'TWEET_ALL'
| 'TWEET_INTERACTIONS'
| 'TWEET_YOUR_REPLY'
| 'TWITTER'
| 'UNDO_RETWEET'
| 'VIEW'
| 'WHATS_HAPPENING'
export type LocaleStringKey = Exclude<LocaleKey, `${string}_FN`>
export type NamedMutationObserver = MutationObserver & {name: string}
export type Disconnectable = {name: string, disconnect(): void}
export type QuotedTweet = {
quotedBy: string
user: string
time: string
text?: string
}
export type SharedTweetsConfig = 'separate' | 'hide' | 'ignore'
export type TweetType =
| 'COMMUNITY_TWEET'
| 'PINNED_TWEET'
| 'PROMOTED_TWEET'
| 'QUOTE_TWEET'
| 'RETWEET'
| 'RETWEETED_QUOTE_TWEET'
| 'TWEET'
| 'UNAVAILABLE'
| 'UNAVAILABLE_QUOTE_TWEET'
| 'UNAVAILABLE_RETWEET'
export type TimelineItemType =
| TweetType
| 'BLUE_REPLY'
| 'BUSINESS_REPLY'
| 'DISCOVER_MORE_HEADING'
| 'DISCOVER_MORE_TWEET'
| 'FOCUSED_TWEET'
| 'GOVERNMENT_REPLY'
| 'HEADING'
| 'INLINE_PROMPT'
| 'SHOW_MORE'
| 'SUBSEQUENT_ITEM'
| 'UNAVAILABLE'
| `NOTIFICATION_${NotificationType}`
export type NotificationType = 'AD' | 'FOLLOW' | 'LIKE' | 'RETWEET'
export type TimelineOptions = {
checkSocialContext?: boolean
classifyTweets?: boolean
hideHeadings?: boolean
isTabbed?: boolean
isUserTimeline?: boolean
onTabChanged?: () => void
onTimelineAppeared?: () => void
tabbedTimelineContainerSelector?: string
timelineSelector?: string
}
export type IndividualTweetTimelineOptions = {
observers: Map<string, Disconnectable>
seen: WeakMap<Element, IndividualTweetDetails>
}
export type IndividualTweetDetails = {
itemType: TimelineItemType,
hidden: boolean | null,
}
export type UserInfo = {
following: boolean
followedBy: boolean
followersCount: number
}
export type UserInfoObject = {[index: string]: UserInfo}
export type VerifiedType = 'BLUE' | 'BUSINESS' | 'GOVERNMENT'