import { QueryKeyTimeline } from '@utils/queryHooks/timeline' import { createContext } from 'react' export type HighlightedStatusContextType = {} type StatusContextType = { queryKey?: QueryKeyTimeline status?: Mastodon.Status isMyAccount?: boolean spoilerHidden?: boolean rawContent?: React.MutableRefObject // When highlighted, for translate, edit history detectedLanguage?: React.MutableRefObject excludeMentions?: React.MutableRefObject highlighted?: boolean suppressSpoiler?: boolean inThread?: boolean disableDetails?: boolean disableOnPress?: boolean isConversation?: boolean isRemote?: boolean } const StatusContext = createContext({} as StatusContextType) export default StatusContext