Urara-Blog/node_modules/.pnpm-store/v3/files/17/f7be3801c708b67571571d4e9931cb19f91d6d8dccd86571db646734b80753bca45295cd885bd1593557ee06bfdcd260bc3d7ee02cd03887da96d31e857ef1
2022-08-14 01:14:53 +08:00

8 lines
311 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 remarkParse: Plugin<[Options?] | void[], string, Root>
export default remarkParse
export type {Options}