Interface CommentsAction

interface CommentsAction {
    data: {
        comments: Comment[];
        options?: CommentSenderOption;
    };
    type: "comments";
}

Properties

Properties

data: {
    comments: Comment[];
    options?: CommentSenderOption;
}

Type declaration

type: "comments"