File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed
packages/bootstrap-vue-3/src/types Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 1
- /**
2
- * @external
3
- */
4
1
declare type CommonAlignment = 'start' | 'end' | 'center' | 'fill'
5
-
6
- declare namespace Alignment {
7
- type Vertical = CommonAlignment | 'baseline' | 'stretch'
8
- type Horizontal = CommonAlignment | 'between' | 'around'
9
- type Content = CommonAlignment | 'between' | 'around' | 'stretch'
10
- type JustifyContent = 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly'
11
- type TextHorizontal = 'start' | 'end' | 'center'
12
- }
13
-
14
- export default Alignment
2
+ export type Vertical = CommonAlignment | 'baseline' | 'stretch'
3
+ export type Horizontal = CommonAlignment | 'between' | 'around'
4
+ export type Content = CommonAlignment | 'between' | 'around' | 'stretch'
5
+ export type JustifyContent = 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly'
6
+ export type TextHorizontal = 'start' | 'end' | 'center'
Original file line number Diff line number Diff line change 1
- export type { default as Alignment } from './Alignment'
1
+ export * as Alignment from './Alignment'
2
2
export type { default as Animation } from './Animation'
3
3
export type { default as AriaInvalid } from './AriaInvalid'
4
4
export type { default as Booleanish } from './Booleanish'
You can’t perform that action at this time.
0 commit comments