1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import type {Root} from 'mdast'
- import type {Options as ToMarkdownExtension} from 'mdast-util-to-markdown'
- import type {Plugin} from 'unified'
- import type {Options} from './lib/index.js'
- export type {Options} from './lib/index.js'
- declare const remarkStringify: Plugin<
- [(Readonly<Options> | null | undefined)?],
- Root,
- string
- >
- export default remarkStringify
- declare module 'unified' {
- interface Settings extends Options {}
- interface Data {
-
- toMarkdownExtensions?: ToMarkdownExtension[]
- }
- }
|