Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

AnySubsocialData

AnySubsocialData: SpaceData | PostData | CommentData | ProfileData

CommentData

CommonData

CommonData<S, C>: { content?: C; struct: S }

Type parameters

Type declaration

  • Optional content?: C
  • struct: S

PostData

PostWithAllDetails

PostWithAllDetails: PostWithOwner & PostWithSpace

PostWithOwner

PostWithOwner: Exclude<PostWithSomeDetails, "owner"> & { owner: ProfileData }

PostWithSomeDetails

PostWithSomeDetails: { ext?: Exclude<PostWithSomeDetails, "ext">; owner?: ProfileData; post: PostData; space?: SpaceData }

Type declaration

PostWithSpace

PostWithSpace: Exclude<PostWithSomeDetails, "space"> & { space: SpaceData }

ProfileData

ProfileData: CommonData<SocialAccountWithId, ProfileContent> & { profile?: Profile }

SocialAccountWithId

SocialAccountWithId: SocialAccount & { id: AccountId }

SpaceData