UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

10 lines (9 loc) 270 B
declare type PropDefinition = { type: any[]; default: any; }; interface ComponentProps { [key: string]: PropDefinition; } declare const _default: (prefix: string, breakpoints: string[], definition: PropDefinition) => ComponentProps; export default _default;