bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
24 lines (22 loc) • 442 B
TypeScript
import type {ColorVariant} from '..'
// Props
export interface Props {
variant?: ColorVariant
max?: number | string
height?: string
animated?: boolean
precision?: number | string
showProgress?: boolean
showValue?: boolean
striped?: boolean
value?: number | string
}
// Emits
// Other
export interface ParentData {
animated: boolean
max: number | string
showProgress: boolean
showValue: boolean
striped: boolean
}