UNPKG

bootstrap-vue-3

Version:

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

13 lines (10 loc) 309 B
/** * @external */ declare type Alignment = 'start' | 'end' | 'center' | 'fill' declare namespace Alignment { type Vertical = Alignment | 'baseline' | 'stretch' type Horizontal = Alignment | 'between' | 'around' type Content = Alignment | 'between' | 'around' | 'stretch' } export default Alignment