kanban / webapp /src /blocks /commentBlock.ts
Leon4gr45's picture
Upload folder using huggingface_hub
13555f3 verified
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Block, createBlock} from './block'
type CommentBlock = Block & {
type: 'comment'
}
function createCommentBlock(block?: Block): CommentBlock {
return {
...createBlock(block),
type: 'comment',
}
}
export {CommentBlock, createCommentBlock}