mirror of
https://github.com/sern-handler/website
synced 2026-06-16 21:02:22 +00:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
// This wrapper exists because JS in TS can’t export a `@type` of a function.
|
||
import type {Root} from 'nlcst'
|
||
import type {Plugin} from 'unified'
|
||
|
||
declare const retextStringify: Plugin<void[], Root, string>
|
||
export default retextStringify
|