gatsby-plugin-mdx
Version:
MDX integration for Gatsby
11 lines (10 loc) • 415 B
TypeScript
import type { NodePluginArgs } from "gatsby";
import type { LoaderDefinition } from "webpack";
import type { IMdxPluginOptions } from "./plugin-options";
export interface IGatsbyLayoutLoaderOptions {
options: IMdxPluginOptions;
nodeExists: (path: string) => Promise<boolean>;
reporter: NodePluginArgs["reporter"];
}
declare const gatsbyLayoutLoader: LoaderDefinition;
export default gatsbyLayoutLoader;