12345678910111213141516171819202122232425262728293031 |
- export function toString(
- value?: unknown,
- options?: Options | null | undefined
- ): string
- export type Nodes = import('mdast').Nodes
- /**
- * Configuration (optional).
- */
- export type Options = {
-
- includeImageAlt?: boolean | null | undefined
-
- includeHtml?: boolean | null | undefined
- }
|