diff --git a/src/runtime/types/list.d.ts b/src/runtime/types/list.d.ts index 7d7eb37738..cc4e7d5f1e 100644 --- a/src/runtime/types/list.d.ts +++ b/src/runtime/types/list.d.ts @@ -1,5 +1,6 @@ import colors from '#ui-colors' import { list } from '../ui.config' +import { PropType } from 'vue' import Button from '../components/elements/Button.vue' export type ListSeparatorColor = keyof typeof list.color | typeof colors[number] @@ -15,7 +16,7 @@ interface Item { export type ListOrientation = keyof typeof list.stacking.orientation -export type ListItem = Item | InstanceType['$props'] +export type ListItem = Item | PropType