import { Comment, ResolvedUserIdentity } from "@omnia/fx-models"; import { SearchResultItem } from "@omnia/workplace/models"; import { PageId } from ".."; export interface CommentSearchResult extends Comment, Omit, CommentSearchResultItem { } export interface CommentSearchResultItem { parentPageTitle?: string; parentPageId?: PageId; parentPageUrl?: string; user?: ResolvedUserIdentity; contentRenderer?: string; }