UNPKG

gatsby-source-tilda

Version:

Gatsby source plugin for building websites using the tilda.cc CMS as a data source

13 lines (12 loc) 366 B
import type { PluginOptions } from 'gatsby'; import TildaApi from './api/tilda'; export interface PluginSettings { secret: string; publicKey: string; projectId: string; exclude: string[]; skip?: boolean; downloadAssets?: boolean; api: TildaApi; } export declare const createPluginConfig: (pluginOptions: PluginOptions) => PluginSettings;