[READ-ONLY] Mirror of https://github.com/danielroe/ripple-framework. Ripple is the presentation layer for building websites on the DPC Single Digital Presence platform.
493 B
26 lines
1export interface IRplPrimaryNavLogo {
2 href: string
3 src: string
4 printSrc?: string
5 altText: string
6}
7
8export interface IRplPrimaryNavItem {
9 id: string
10 text: string
11 url: string
12 items?: IRplPrimaryNavItem[]
13 active: boolean
14}
15
16export interface IRplPrimaryNavActiveItems {
17 level1?: IRplPrimaryNavItem
18 level2?: IRplPrimaryNavItem
19 level3?: IRplPrimaryNavItem
20}
21
22export type IRplPrimaryNavToggleItemOptions = [
23 level: 1 | 2 | 3,
24 item: IRplPrimaryNavItem,
25 open?: boolean
26]