gatsby-mdx-remote
Version:
A plugin to transform nodes with mdx content and frontmatter into mdx File nodes for consumption by the gatsby-plugin-mdx plugin
16 lines • 537 B
TypeScript
import type { GatsbyNode } from "gatsby";
export interface PluginTypeOptions {
mdxField: string;
mdxFrontmatterField: string;
preprocessImages?: boolean;
gatsbyImageClassName?: string;
}
export interface PluginOptions {
mdxNodeTypes: {
[key: string]: PluginTypeOptions;
};
}
export declare const onPreInit: GatsbyNode["onPreInit"];
export declare const createResolvers: GatsbyNode["createResolvers"];
export declare const onCreateNode: GatsbyNode["onCreateNode"];
//# sourceMappingURL=gatsby-node.d.ts.map