ant-design-vue/types/space.d.ts

12 lines
416 B
TypeScript
Raw Normal View History

2020-08-31 14:59:56 +08:00
import { AntdComponent, AntdProps } from './component';
2020-08-22 10:21:34 +08:00
export type SizeType = 'small' | 'middle' | 'large' | undefined;
export declare class Space extends AntdComponent {
2020-08-31 14:59:56 +08:00
$props: AntdProps & {
2020-08-22 10:21:34 +08:00
prefixCls?: string;
size?: SizeType | number;
direction?: 'horizontal' | 'vertical';
// No `stretch` since many components do not support that.
align?: 'start' | 'end' | 'center' | 'baseline';
};
}