Spaces:
Sleeping
Sleeping
| // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. | |
| // See LICENSE.txt for license information. | |
| import {ContentBlock} from './contentBlock' | |
| import {Block, createBlock} from './block' | |
| type TextBlock = ContentBlock & { | |
| type: 'text' | |
| } | |
| function createTextBlock(block?: Block): TextBlock { | |
| return { | |
| ...createBlock(block), | |
| type: 'text', | |
| } | |
| } | |
| export {TextBlock, createTextBlock} | |