Draft.js-style entity payloads in article block `data` (mentions, urls, hashtags, cashtags).
| 38 | |
| 39 | /** Draft.js-style entity payloads in article block `data` (mentions, urls, hashtags, cashtags). */ |
| 40 | interface BlockDataEntitySpan { |
| 41 | fromIndex: number; |
| 42 | toIndex: number; |
| 43 | text: string; |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Collects all inline links (mentions, URLs, hashtags) from block data |
nothing calls this directly
no outgoing calls
no test coverage detected