UNPKG

bootstrap-vue-3

Version:

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

9 lines (7 loc) 315 B
import type {VerticalAlign} from '.' export type ContainerVerticalAlign = Exclude<VerticalAlign, 'baseline' | 'text-top' | 'text-bottom'> export type ContainerHorizontalAlign = 'left' | 'center' | 'right' /** * @external */ export type ContainerPosition = `${ContainerVerticalAlign}-${ContainerHorizontalAlign}`