import { PageId } from "../../pages/Page"; import { VersionId } from "../../pages/VersionedPageData"; import { Activity } from "./Activity"; import { Identity, GuidValue } from "@omnia/fx-models"; export interface CommentContent { readonly content: string; readonly truncated: boolean; } export interface PageCommentActivity extends Activity { /** * The user id of the one who created the comment * */ readonly createdBy: Identity; readonly pageId: PageId; readonly versionId: VersionId; readonly commentId: GuidValue; readonly comment: CommentContent; readonly pageTitle: string; }