mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
/**
|
||
* Add support for generic directives.
|
||
*
|
||
* ###### Notes
|
||
*
|
||
* Doesn’t 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>;
|