(transform: MarkdownSerializerWithTransform<T>, options: T)
| 62 | }, |
| 63 | |
| 64 | with<T = MarkdownSerializerOptions>(transform: MarkdownSerializerWithTransform<T>, options: T) { |
| 65 | const { transform: t } = this |
| 66 | this.transform = transform(t.bind(this), this, options) |
| 67 | }, |
| 68 | |
| 69 | withEditor<T = MarkdownSerializerOptions>( |
| 70 | editor: Editor, |
nothing calls this directly
no test coverage detected
searching dependent graphs…