gatsby-source-tilda
Version:
Gatsby source plugin for building websites using the tilda.cc CMS as a data source
16 lines (15 loc) • 565 B
TypeScript
import type { Actions, Node, NodePluginArgs, Reporter } from 'gatsby';
export declare const downloadTildaAssets: (gatsbyFunctions: {
actions: {
createNode: Actions['createNode'];
createNodeField: Actions['createNodeField'];
touchNode: Actions['touchNode'];
};
createNodeId: NodePluginArgs['createNodeId'];
store: NodePluginArgs['store'];
cache: NodePluginArgs['cache'];
getNode: NodePluginArgs['getNode'];
getNodes: NodePluginArgs['getNodes'];
reporter: Reporter;
assetNodes: Node[];
}) => Promise<void>;