-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathrow.d.ts
43 lines (38 loc) · 1.02 KB
/
row.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from "../component";
export declare class Row extends AntdComponent {
/**
* spacing between grids, could be a number or a object like { xs: 8, sm: 16, md: 24}
* @default 0
* @type numner | object
*/
gutter:
| number
| {
xs: number;
sm: number;
md: number;
lg: number;
xl: number;
xxl: number;
};
/**
* layout mode, optional flex
* @type string
*/
type: string;
/**
* the vertical alignment of the flex layout: top middle bottom
* @default 'top'
* @type string
*/
align: "top" | "middle" | "bottom";
/**
* horizontal arrangement of the flex layout: start end center space-around space-between
* @default 'start'
* @type string
*/
justify: "start" | "end" | "center" | "space-around" | "space-between";
}