| 31 | |
| 32 | export namespace Tokens { |
| 33 | export interface Blockquote { |
| 34 | type: 'blockquote'; |
| 35 | raw: string; |
| 36 | text: string; |
| 37 | tokens: Token[]; |
| 38 | } |
| 39 | |
| 40 | export interface Br { |
| 41 | type: 'br'; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…