UNPKG

@theguild/components

Version:
12 lines (9 loc) 469 B
import { NextConfig } from 'next'; import { NextraConfig } from 'nextra'; type MdxOptions = Exclude<NextraConfig['mdxOptions'], undefined>; declare const defaultRemarkPlugins: MdxOptions['remarkPlugins']; interface WithGuildDocsOptions extends NextConfig { nextraConfig?: NextraConfig; } declare function withGuildDocs({ nextraConfig, ...nextConfig }?: WithGuildDocsOptions): NextConfig; export { type WithGuildDocsOptions, defaultRemarkPlugins, withGuildDocs };