Fired whenever a comment thread is resolved.
The event name includes channelId
so it is possible to listen only
on changes happening in the specified channel.
const channelId = 'foo';
commentsRepository.on( `resolveCommentThread:${ channelId }`, ( evt, data ) => {
console.log( evt, data );
} );