UNPKG

vite-plugin-mdx

Version:
10 lines 489 B
import type { Plugin } from 'vite'; import { MdxOptions, MdxPlugin } from './types'; import { NamedImports } from './imports'; export { MdxOptions, MdxPlugin }; declare function viteMdx(mdxOptions?: MdxOptions | ((filename: string) => MdxOptions)): Plugin[]; declare namespace viteMdx { var withImports: (namedImports: NamedImports) => (mdxOptions?: MdxOptions | ((filename: string) => MdxOptions) | undefined) => Plugin[]; } export default viteMdx; //# sourceMappingURL=index.d.ts.map