import { Search } from "../../search/models"; export interface HeaderSearchSetting { showSearchBoxOnHeader: boolean; searchStringToQueryString: boolean; searchSettings: Search.SearchSettings; } export interface HeaderStyleSetting { backgroundColor: string; iconColor: string; } export interface HeaderSettingsSection { /** * The title of the navigation node */ title: string; /** * The element that will be rendered when selected */ elementToRender: string; /** * This influence the order of the navigation nodes, be nice, use ordering with gap -100, 0, 100, 200 So other extensions etc can inject between */ weight: number; }