| 22 | } |
| 23 | |
| 24 | export interface RendererThis<ParserOutput = string, RendererOutput = string> { |
| 25 | parser: _Parser<ParserOutput, RendererOutput>; |
| 26 | } |
| 27 | |
| 28 | export type RendererExtensionFunction<ParserOutput = string, RendererOutput = string> = (this: RendererThis<ParserOutput, RendererOutput>, token: Tokens.Generic) => RendererOutput | false | undefined; |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…