UNPKG

@sysdoc/sharepoint-util

Version:

A utility library for SharePoint solutions

21 lines (20 loc) 466 B
export interface NavLink { isExternal?: boolean; title: string; url?: string; items?: NavLink[]; } export interface StructuralNavigation { removeExistingNodes?: boolean; items: NavLink[]; } export interface NavigationItem { type: "Managed" | "Structural"; termStoreId?: string; termSetId?: string; structural?: StructuralNavigation; } export interface Navigation { global?: NavigationItem; current?: NavigationItem; }