UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

11 lines (10 loc) 210 B
export type PropDefinition = { type: unknown[]; default: unknown; }; /** * Not to be confused with the ComponentProps.ts file */ export interface ComponentProps { [key: string]: PropDefinition; }