UNPKG

323 BTypeScriptView Raw
1import { PluginConfig } from '../gatsby-node';
2export declare type StateCache = {
3 [key: string]: any;
4};
5export declare enum CACHE_KEYS {
6 TYPE_MAP = "typeMap",
7 GRAPHQL_SDL = "graphqlSdl",
8 IMAGE_EXTENSIONS = "imageExt"
9}
10export declare function getCacheKey(config: PluginConfig, suffix: CACHE_KEYS): string;