import { NcrContentfulComponentsConfig } from "../components/ncr-contentful-components.config"; import { NcrContentfulRoutingConfig } from "../routing/ncr-contentful-routing.config"; import { ContentfulConfig } from "../contentful/contentful.config"; import { NcrContentfulBreakpointsConfig } from "./ncr-contentful-breakpoints.config"; import { NcrContentfulSeoConfig } from "../contentful/ncr-contentful-seo.config"; import { NcrContentfulConvertersConfig } from "../contentful/ncr-contentful-converters.config"; export interface NcrContenfulConfigMerged extends ContentfulConfig, NcrContentfulRoutingConfig, NcrContentfulComponentsConfig, NcrContentfulBreakpointsConfig, NcrContentfulSeoConfig, NcrContentfulConvertersConfig { } declare module "./ncr-contentful-config.token" { interface NcrContentfulConfig extends NcrContenfulConfigMerged { } }