unoffical wafrn mirror wafrn.net
atproto social-network activitypub
at angular21 29 lines 737 B view raw
1import { SimplifiedUser } from './simplified-user' 2import { WafrnMedia } from './wafrn-media' 3import { Tag } from './tag' 4import { WafrnMention } from './wafrn-mention' 5import { Emoji } from './emoji' 6import { QuestionPoll } from './questionPoll' 7 8export interface RawPost { 9 id: string 10 content_warning: string 11 content: string 12 createdAt: Date 13 updatedAt: Date 14 userId: string 15 hierarchyLevel: number 16 ancestors?: RawPost[] 17 descendents?: RawPost[] 18 user: SimplifiedUser 19 medias?: WafrnMedia[] 20 postTags: Tag[] 21 mentionPost?: SimplifiedUser[] 22 notes: number 23 privacy: number 24 remotePostId?: string 25 userLikesPostRelations: { userId: string }[] 26 emojis: Array<Emoji> 27 questionPoll?: QuestionPoll, 28 featured?: Date 29}