Spaces:
Sleeping
Sleeping
File size: 388 Bytes
13555f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Block, createBlock} from './block'
type IContentBlockWithCords = {
block: Block
cords: {x: number, y?: number, z?: number}
}
type ContentBlock = Block
const createContentBlock = createBlock
export {ContentBlock, IContentBlockWithCords, createContentBlock}
|