UNPKG

bootstrap-vue-3

Version:

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

6 lines (4 loc) 301 B
import type {VerticalAlign} from '../types' export type ContainerVerticalAlign = Exclude<VerticalAlign, 'baseline' | 'text-top' | 'text-bottom'> export type ContainerHorizontalAlign = 'left' | 'center' | 'right' export type ContainerPosition = `${ContainerVerticalAlign}-${ContainerHorizontalAlign}`