UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

8 lines (7 loc) 247 B
import { TeleportProps } from 'vue'; export type Numberish = string | number; export type TeleporterProps = { teleportDisabled?: TeleportProps['disabled']; teleportTo?: TeleportProps['to']; }; export type ValidationState = boolean | null;