From 152b6bd5474b788ef1f14536be5aa692e094dd24 Mon Sep 17 00:00:00 2001 From: Italo Israel Baeza Cabrera Date: Fri, 24 Nov 2023 00:34:48 -0300 Subject: [PATCH] Should have fixed deployment --- src/runtime/types/list.d.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/runtime/types/list.d.ts b/src/runtime/types/list.d.ts index cc4e7d5f1e..16ee27f0c5 100644 --- a/src/runtime/types/list.d.ts +++ b/src/runtime/types/list.d.ts @@ -5,7 +5,9 @@ import Button from '../components/elements/Button.vue' export type ListSeparatorColor = keyof typeof list.color | typeof colors[number] -interface Item { +export type ListOrientation = keyof typeof list.stacking.orientation + +export type ListItem = { label: string, icon?: string, leading?: boolean, @@ -14,10 +16,6 @@ interface Item { trailingIcon?: string } -export type ListOrientation = keyof typeof list.stacking.orientation - -export type ListItem = Item | PropType