Wagtail client-side components
    Preparing search index...
    commentActionFunctions: {
        addComment: (comment: Comment) => AddCommentAction;
        addReply: (commentId: number, reply: CommentReply) => AddReplyAction;
        deleteComment: (commentId: number) => DeleteCommentAction;
        deleteReply: (commentId: number, replyId: number) => DeleteReplyAction;
        invalidateContentPath: (contentPath: string) => InvalidateContentPathAction;
        resolveComment: (commentId: number) => ResolveCommentAction;
        setFocusedComment: (
            commentId: null | number,
            __namedParameters?: { forceFocus: boolean; updatePinnedComment: boolean },
        ) => SetFocusedCommentAction;
        updateComment: (
            commentId: number,
            update: CommentUpdate,
        ) => UpdateCommentAction;
        updateReply: (
            commentId: number,
            replyId: number,
            update: CommentReplyUpdate,
        ) => UpdateReplyAction;
    } = ...

    Type declaration