@corejam/base
Version:
A scaffolding for building progressive GraphQL powered jamstack applications
12 lines (11 loc) • 316 B
TypeScript
import { SEO } from "./Seo";
import { DBDocument } from "./Utils";
export declare type Config = {
seo: SEO;
general: ConfigGeneral;
};
export declare type ConfigDB = DBDocument & Config;
export declare type ConfigEditInput = Partial<Config>;
export declare type ConfigGeneral = {
admin_email: string;
};