From 15fca025041c7ff8124696eda0ae6f0fecc7dbee Mon Sep 17 00:00:00 2001 From: gabaldon Date: Thu, 5 Sep 2024 14:22:01 +0200 Subject: [PATCH] fix: export types correctly --- src/components/Footer/WFooter.ts | 8 ++++---- src/components/Footer/WFooter.vue | 2 +- src/index.ts | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/Footer/WFooter.ts b/src/components/Footer/WFooter.ts index c899459..047f168 100644 --- a/src/components/Footer/WFooter.ts +++ b/src/components/Footer/WFooter.ts @@ -1,8 +1,8 @@ -export type FooterSection = { - title: string - links: FooterLink[] -} export type FooterLink = { url: string label: string } +export type FooterSection = { + title: string + links: FooterLink[] +} diff --git a/src/components/Footer/WFooter.vue b/src/components/Footer/WFooter.vue index d0b0f30..c66ca17 100644 --- a/src/components/Footer/WFooter.vue +++ b/src/components/Footer/WFooter.vue @@ -74,7 +74,7 @@