-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.d.ts
44 lines (44 loc) · 1.41 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
export declare const xuiLoadingScreen: () => void;
export declare const xuiHideSkeleton: (ele?: Element) => void;
export declare const xuiModal: () => void;
export declare const xuiAccordion: () => void;
export declare const xuiAlerts: () => void;
export declare const xuiLazyLoadings: () => void;
export declare const xuiAnime: (customDefinition?: string) => void;
export declare const xuiAnimeStart: (customDefinition?: string) => void;
export declare const xuiAnimeEnd: (customDefinition?: string) => void;
export interface TypeWriterConfig {
words?: string[];
duration?: number;
target: string;
delay?: number;
cursor?: boolean;
}
export declare const xuiTypeWriter: (obj: TypeWriterConfig) => void;
export declare const xuiScrollOnAnimation: () => void;
export declare const xuiModalShow: (name: string) => void;
export declare const xuiModalHide: (name: string) => void;
export declare const xui: {
run: () => void;
control: {
loader: () => void;
};
animate: {
default: (custom: any) => void;
start: (custom: any) => void;
end: (custom: any) => void;
};
effect: {
typewriter: (obj: any) => void;
};
reveal: {
images: () => void;
skeletons: (ele: Element) => void;
};
modal: {
show: (name: string) => void;
hide: (name: string) => void;
};
};
declare const Stylexui: () => void;
export default Stylexui;