gatsby
Version:
Blazing fast modern site generator for React
6 lines (5 loc) • 299 B
TypeScript
import Joi from "joi";
import { IGatsbyConfig, IGatsbyPage, IGatsbyNode } from "../redux/types";
export declare const gatsbyConfigSchema: Joi.ObjectSchema<IGatsbyConfig>;
export declare const pageSchema: Joi.ObjectSchema<IGatsbyPage>;
export declare const nodeSchema: Joi.ObjectSchema<IGatsbyNode>;