forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
62 lines (55 loc) · 1.05 KB
/
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
53
54
55
56
57
58
59
60
61
62
import "vuetify/src/util/helpers";
import {PluginFunction} from "vue";
declare class Vuetify {
static install: PluginFunction<never>;
}
declare class VuetifyApplication {
bar: number;
bottom: number;
left: number;
right: number;
top: number;
}
declare class VuetifyBreakpoint {
height: number;
lg: boolean;
lgAndDown: boolean;
lgAndUp: boolean;
lgOnly: boolean;
md: boolean;
mdAndDown: boolean;
mdAndUp: boolean;
mdOnly: boolean;
name: string;
sm: boolean;
smAndDown: boolean;
smAndUp: boolean;
smOnly: boolean;
width: number;
xl: boolean;
xlOnly: boolean;
xs: boolean;
xsOnly: boolean;
}
declare class VuetifyTheme {
primary: string;
accent: string;
secondary: string;
info: string;
warning: string;
error: string;
success: string;
}
declare class VuetifyObject {
application: VuetifyApplication;
breakpoint: VuetifyBreakpoint;
dark: boolean;
theme: VuetifyTheme;
touchSupport: boolean;
}
declare module "vue/types/vue" {
interface Vue {
$vuetify: VuetifyObject;
}
}
export default Vuetify;