Urara-Blog/node_modules/.pnpm-store/v3/files/a5/1b9ffb72ca6d7c0d7b8d3320e0992331fe30cd86ffcc696a5fe1cd0817a2a83c145b75fa3b391ccdbc99796d994332e0b26615ce3a7b371927ecac3dfc6929
2022-08-14 01:14:53 +08:00

8 lines
319 B
Text
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.

// This wrapper exists because JS in TS cant export a `@type` of a function.
import type {Root} from 'mdast'
import type {Plugin} from 'unified'
import type {Options} from './lib/index.js'
declare const remarkStringify: Plugin<[Options?] | void[], Root, string>
export default remarkStringify
export type {Options}