返回 AiToEarn
twitter.enum.ts
1 export enum TwitterReplySettings {
2 Following = 'following',
3 MentionedUsers = 'mentionedUsers',
4 Subscribers = 'subscribers',
5 Verified = 'verified',
6 }
7
8 export enum TwitterMediaProcessingState {
9 Pending = 'pending',
10 InProgress = 'in_progress',
11 Succeeded = 'succeeded',
12 Failed = 'failed',
13 }
14
15 export enum TwitterPostMediaType {
16 Photo = 'photo',
17 Video = 'video',
18 AnimatedGif = 'animated_gif',
19 }
20
20 lines TYPESCRIPT