MCPcopy Create free account
hub / github.com/Linen-dev/linen.dev / ChannelProps

Interface ChannelProps

packages/types/src/ssr.ts:6–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { SerializedThread, SerializedTopic } from './threads';
5
6export 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
27export interface ThreadProps {
28 isBot?: boolean;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected