/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ export type VtsSpaceDirection = 'vertical' | 'horizontal'; export type VtsSpaceAlign = 'start' | 'end' | 'center' | 'baseline' | 'stretch'; export type VtsSpaceJustify = 'around' | 'between' | 'center' | 'end' | 'start'; export type VtsSpaceType = 'sm' | 'md' | 'lg'; export type VtsSpaceSize = VtsSpaceType | number;