| 4 | import { SerializedThread, SerializedTopic } from './threads'; |
| 5 | |
| 6 | export interface ChannelProps { |
| 7 | settings: Settings; |
| 8 | channelName: string; |
| 9 | channels: SerializedChannel[]; |
| 10 | dms: SerializedChannel[]; |
| 11 | communities: SerializedAccount[]; |
| 12 | currentChannel: SerializedChannel; |
| 13 | currentCommunity: SerializedAccount; |
| 14 | threads: SerializedThread[]; |
| 15 | topics?: SerializedTopic[]; |
| 16 | pinnedThreads: SerializedThread[]; |
| 17 | isSubDomainRouting: boolean; |
| 18 | nextCursor: { |
| 19 | next: string | null; |
| 20 | prev: string | null; |
| 21 | }; |
| 22 | pathCursor: string | null; |
| 23 | isBot: boolean; |
| 24 | permissions: Permissions; |
| 25 | } |
| 26 | |
| 27 | export interface ThreadProps { |
| 28 | isBot?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected