UNPKG

gatsby-source-prismic

Version:

Gatsby source plugin for building websites using Prismic as a data source

10 lines (9 loc) 374 B
import type { GatsbyCache, GatsbyGraphQLObjectType, NodePluginSchema } from "gatsby"; import { PluginOptions } from "../types"; type BuildImageObjectTypeConfig = { schema: NodePluginSchema; cache: GatsbyCache; pluginOptions: PluginOptions; }; export declare const buildImageObjectType: (config: BuildImageObjectTypeConfig) => GatsbyGraphQLObjectType; export {};