@theguild/components
Version:
11 lines (8 loc) • 384 B
text/typescript
import { NextConfig } from 'next';
import { NextraConfig } from 'nextra';
type MdxOptions = Exclude<NextraConfig['mdxOptions'], undefined>;
declare const defaultRemarkPlugins: MdxOptions['remarkPlugins'];
declare function withGuildDocs({ nextraConfig, ...nextConfig }?: NextConfig & {
nextraConfig?: NextraConfig;
}): NextConfig;
export { defaultRemarkPlugins, withGuildDocs };