kjelsrud.dev/node_modules/remark-smartypants/index.d.ts
2023-07-19 21:31:30 +02:00

15 lines
360 B
TypeScript

/**
* remark plugin to implement SmartyPants.
*
* @type {import('unified').Plugin<[Options?] | void[], Root>}
*/
import { Options } from "retext-smartypants";
import { Transformer } from "unified";
import { Root } from "mdast";
export { Options };
export default function remarkSmartypants(
options?: void | Options
): void | Transformer<Root, Root>;