SearchResult
type SearchResult = {
channelColor?: number | null;
channelId?: number | null;
channelName?: string | null;
closed?: boolean | null;
commentId?: number | null;
conversationId?: number | null;
id: string;
snippet: string;
snippetCreatorId: number;
snippetLastUpdated: Date;
threadId?: number | null;
title?: string | null;
type: "thread" | "comment" | "message";
};