| 1 | import { Element, Text2, Field } from './slackMessageEventInterface'; |
| 2 | |
| 3 | export interface Block { |
| 4 | type: string; |
| 5 | block_id: string; |
| 6 | elements: Element[]; |
| 7 | text: Text2; |
| 8 | fields: Field[]; |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected