-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathvue-content-loader.d.ts
29 lines (25 loc) · 1.03 KB
/
vue-content-loader.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
import { VueConstructor } from 'vue';
export const ContentLoader: ContentLoaderConstructor
export const FacebookLoader: FacebookLoaderConstructor
export const BulletListLoader: BulletListLoaderConstructor
export const InstagramLoader: InstagramLoaderConstructor
export const CodeLoader: CodeLoaderConstructor
export const ListLoader: ListLoaderConstructor
export interface ContentLoaderProps {
width: number,
height: number,
speed: number,
preserveAspectRatio: string,
primaryColor: string,
secondaryColor: string,
uniqueKey: string,
animate: boolean
}
export interface ContentLoaderConstructor extends VueConstructor {
props: ContentLoaderProps
}
export interface FacebookLoaderConstructor extends ContentLoaderConstructor{}
export interface CodeLoaderConstructor extends ContentLoaderConstructor{}
export interface BulletListLoaderConstructor extends ContentLoaderConstructor{}
export interface InstagramLoaderConstructor extends ContentLoaderConstructor{}
export interface ListLoaderConstructor extends ContentLoaderConstructor{}