import type { Person } from "./Person"; /** * A vote view for checking a post or comments votes. */ export type VoteView = { creator: Person; creator_banned: boolean; creator_banned_from_community: boolean; /** * True means Upvote, False means Downvote. */ is_upvote: boolean; };