mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 17:29:31 +08:00
8 lines
319 B
Text
8 lines
319 B
Text
// This wrapper exists because JS in TS can’t 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}
|