UNPKG

gatsby-plugin-mdx

Version:
12 lines (11 loc) 423 B
import type { ProcessorOptions } from "@mdx-js/mdx"; import type { NodePluginArgs } from "gatsby"; import type { LoaderDefinition } from "webpack"; export interface IGatsbyMDXLoaderOptions { options: ProcessorOptions; getNode: NodePluginArgs["getNode"]; cache: NodePluginArgs["cache"]; reporter: NodePluginArgs["reporter"]; } declare const gatsbyMDXLoader: LoaderDefinition; export default gatsbyMDXLoader;