@brendonovich/kobalte__solidbase
Version:
Fully featured, fully customisable static site generation for SolidStart
10 lines (9 loc) • 473 B
TypeScript
import type { Plugin } from "vite";
import type { NamedImports } from "./imports.js";
import type { MdxOptions, MdxPlugin } from "./types.js";
export type { MdxOptions, MdxPlugin };
declare function viteMdx(mdxOptions?: MdxOptions | ((filename: string) => MdxOptions)): Plugin<any>[];
declare namespace viteMdx {
var withImports: (namedImports: NamedImports) => (mdxOptions?: MdxOptions | ((filename: string) => MdxOptions)) => Plugin<any>[];
}
export default viteMdx;