UNPKG

bootstrap-vue-next

Version:

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

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; }