kjelsrud.dev/node_modules/rehype-stringify/lib/index.d.ts

8 lines
350 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/** @type {import('unified').Plugin<[Options?]|Array<void>, Node, string>} */
export default function rehypeStringify(
config: void | import('hast-util-to-html/lib/types').Options | undefined
): void
export type Root = import('hast').Root
export type Node = Root | Root['children'][number]
export type Options = import('hast-util-to-html').Options