Files
documentation/node_modules/remark-directive/lib/index.d.ts
2024-03-22 03:47:51 +05:30

14 lines
335 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Add support for generic directives.
*
* ###### Notes
*
* Doesnt handle the directives: create your own plugin to do that.
*
* @returns {undefined}
* Nothing.
*/
export default function remarkDirective(): undefined;
export type Root = import('mdast').Root;
export type Processor = import('unified').Processor<Root>;