define types

This commit is contained in:
2024-03-12 06:22:37 +01:00
parent 57d37dd699
commit 41de3a001c
17 changed files with 42 additions and 45 deletions

View File

@@ -1,5 +1,5 @@
import { type PropType } from 'vue';
import type { FlowbiteTheme, ThemableChildrenApply } from '@/components/utils/FlowbiteThemable/types';
import type { FlowbiteTheme, ThemableChildrenApply } from '../../../components/utils/FlowbiteThemable/types';
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
apply: {
type: PropType<ThemableChildrenApply[]>;

View File

@@ -1,6 +1,6 @@
import { type Ref } from 'vue';
import type { ThemableChildrenApply } from '../types';
import type { FlowbiteTheme } from '@/components/utils/FlowbiteThemable/types';
import type { FlowbiteTheme } from '../../../../components/utils/FlowbiteThemable/types';
type UseFlowbiteThemableChildReturns = {
classes: Ref<string>;
};