We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f318ba2 commit d596c01Copy full SHA for d596c01
src/types.ts
@@ -16,10 +16,6 @@ interface Link {
16
icon?: string
17
openInNew?: boolean
18
}
19
-interface FooterLinks {
20
- title: string
21
- links: Link[]
22
-}
23
24
// Page interface
25
interface PageModuleOptions {
@@ -29,7 +25,10 @@ interface PageModuleOptions {
29
navigation?: {
30
26
primary?: Link[]
31
27
secondary?: Link[]
32
- footerPrimary?: FooterLinks[]
28
+ footerPrimary?: {
+ title: string
+ links: Link[]
+ }[]
33
footerSecondary?: Link[]
34
35
0 commit comments