RocketChat/Rocket.Chat

View on GitHub
packages/ui-kit/src/blocks/Block.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { BlockElement } from './BlockElement';
import type { LayoutBlock } from './LayoutBlock';
import type { TextObject } from './TextObject';

export type Block = TextObject | BlockElement | LayoutBlock;