bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
16 lines (15 loc) • 363 B
TypeScript
export interface ComponentProps {
[key: string]: {
type: any[];
default: any;
};
}
/**
* @param props
* @param els
* @param propPrefix
* @param classPrefix
* @returns
*/
declare const _default: (props: Record<PropertyKey, unknown>, els: ComponentProps, propPrefix: string, classPrefix?: string) => string[];
export default _default;