import type { Control, Provider } from './settings'; export type NitrogenConfig = { provider: Provider; licenseKey: string; siteUrl: string; /** * URL to go back to the CMS editor in Settings Panel */ editorUrl?: (pageId?: string) => string; wysiwygColors: { [key: string]: string; }; cssInjection: string; modules: () => Record Promise>; controls?: Control[]; };