wx-ezhan
    Preparing search index...
    publishCommentSlice: Slice<
        {
            comment: string;
            isReply: boolean;
            parentCmtId: string;
            topicId: string;
        },
        {
            setComment: (
                state: WritableDraft<
                    {
                        comment: string;
                        isReply: boolean;
                        parentCmtId: string;
                        topicId: string;
                    },
                >,
                action: {},
            ) => void;
            setIsReply: (
                state: WritableDraft<
                    {
                        comment: string;
                        isReply: boolean;
                        parentCmtId: string;
                        topicId: string;
                    },
                >,
                action: {},
            ) => void;
            setParentCmtId: (
                state: WritableDraft<
                    {
                        comment: string;
                        isReply: boolean;
                        parentCmtId: string;
                        topicId: string;
                    },
                >,
                action: {},
            ) => void;
            setTopicId: (
                state: WritableDraft<
                    {
                        comment: string;
                        isReply: boolean;
                        parentCmtId: string;
                        topicId: string;
                    },
                >,
                action: {},
            ) => void;
        },
        "publishComment",
        "publishComment",
        SliceSelectors<
            {
                comment: string;
                isReply: boolean;
                parentCmtId: string;
                topicId: string;
            },
        >,
    > = ...