(
transform: MarkdownDeserializerWithTransform<T>,
options: T,
)
| 141 | }, |
| 142 | |
| 143 | with<T = MarkdownDeserializerOptions>( |
| 144 | transform: MarkdownDeserializerWithTransform<T>, |
| 145 | options: T, |
| 146 | ) { |
| 147 | const { transform: t } = this |
| 148 | this.transform = transform(t.bind(this), this, options) |
| 149 | }, |
| 150 | |
| 151 | withEditor<T = MarkdownDeserializerOptions>( |
| 152 | editor: Editor, |
nothing calls this directly
no test coverage detected
searching dependent graphs…