gatsby-source-prismic
Version:
Gatsby source plugin for building websites using Prismic as a data source
9 lines (8 loc) • 333 B
TypeScript
import type { NodePluginArgs } from "gatsby";
import type { FileSystemNode } from "gatsby-source-filesystem";
type CreateCachedRemoteFileNodeArgs = {
url: string;
gatsbyNodeArgs: NodePluginArgs;
};
export declare const createCachedRemoteFileNode: (args: CreateCachedRemoteFileNodeArgs) => Promise<FileSystemNode>;
export {};