-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.d.ts
52 lines (44 loc) · 767 Bytes
/
index.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
44
45
46
47
48
49
50
51
52
import { PluginFunction } from 'vue';
type AlignValue =
'top' |
'middle' |
'bottom' |
'stretch' |
'baseline';
type JustifyValue =
'start' |
'center' |
'end' |
'between' |
'around';
type WidthValue =
'fill' |
'1of12' |
'2of12' |
'3of12' |
'4of12' |
'5of12' |
'6of12' |
'7of12' |
'8of12' |
'9of12' |
'10of12' |
'11of12' |
'12of12';
export interface VueGrdOptions {}
export class VueGrid {
tag: string;
align: AlignValue;
justify: JustifyValue;
readonly computedAlign: string;
readonly computedJustify: string;
}
export class VueCell {
tag: string;
width: WidthValue;
readonly computedWidth: string;
}
declare const installer: {
install: PluginFunction<VueGrdOptions>;
};
export default installer;