@brendonovich/kobalte__solidbase
Version:
Fully featured, fully customisable static site generation for SolidStart
10 lines (9 loc) • 379 B
TypeScript
import type { RemarkPlugin } from "../types.js";
/**
* Almost identical to the `createMdxAstCompiler` export of `@mdx-js/mdx`
* but without the `mdxAstToMdxHast` transformer.
*
* We can get rid of this once https://github.com/mdx-js/mdx/issues/1512
* is addressed.
*/
export declare function createMdxAstCompiler(cwd: string, remarkPlugins: Readonly<RemarkPlugin>[]): any;