UNPKG

svem

Version:

Svelte in Markdown preprocessor

13 lines (10 loc) 342 B
import { Plugin } from 'unified'; import { XNode } from './attribute.js'; import 'mdast'; type CodeImportOptions = { cwd?: string; fileAsTitle?: boolean; transform?: (code: string) => string; }; declare const remarkCodeImport: Plugin<[CodeImportOptions | undefined], XNode>; export { type CodeImportOptions, remarkCodeImport };