UNPKG

design-angular-kit-lombardia

Version:

Un toolkit Angular conforme alle linee guida di design per i servizi web della Regione Lombardia

11 lines (10 loc) 231 B
export interface NavscrollItem { title: string; text: string; href: string; childs: NavscrollItems; } export type NavscrollItems = Array<NavscrollItem>; export interface NavscrollItemActive { active: boolean; }