UNPKG

gatsby-source-circleci

Version:

Source plugin for [CircleCI's API](https://circleci.com/docs/api/#circleci-api-reference-guide).

8 lines (7 loc) 348 B
import { SourceNodesArgs, GatsbyNode } from "gatsby"; interface PluginOptions { apiKey: string; } export declare const pluginOptionsSchema: GatsbyNode["pluginOptionsSchema"]; export declare const sourceNodes: ({ actions, createNodeId, createContentDigest, reporter }: SourceNodesArgs, pluginOptions: PluginOptions) => Promise<void>; export {};