forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.notifyBar.d.ts
106 lines (87 loc) · 2.59 KB
/
jquery.notifyBar.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Type definitions for jQuery Notify Bar 1.4
// Project: http://www.whoop.ee/posts/2013-04-05-the-resurrection-of-jquery-notify-bar/
// Definitions by: Shunsuke Ohtani <https://github.com/zaneli>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../jquery/jquery.d.ts" />
declare namespace JQueryNotifyBar {
interface NotifyBarOptions {
/**
* What text will be inside bar. Can be HTML or just text.
*/
html?: string;
/**
* How long bar will be delayed, doesn't count animation time.
*/
delay?: number;
/**
* How long this bar will be slided up and down.
*
* Default: "normal"
*/
animationSpeed?: string | number;
/**
* Custom jQuery object for notify bar.
*/
jqObject?: JQuery;
/**
* You can define own CSS class for Notify bar. There are too premade classes "error", "warning" and "success".
*/
cssClass?: string;
/**
* If set to true close button will be displayed.
*/
close?: boolean;
/**
* Sets the text to close button.
*/
closeText?: string;
/**
* If enabled, user can hide notify bar just by click on it.
*/
closeOnClick?: boolean;
/**
* If enabled, user can hide notify bar just by moving mouse cursor on it.
*/
closeOnOver?: boolean;
/**
* Callback on before show.
*/
onBeforeShow?: () => any;
/**
* Callback on show.
*/
onShow?: () => any;
/**
* Callback on before hide.
*/
onBeforeHide?: () => any;
/**
* Callback on hide.
*/
onHide?: () => any;
/**
* Set the position of notify bar. Possible values are "top", "bottom".
*/
position?: string;
}
interface NotifyBarOptionsForAnimationSpeedString extends NotifyBarOptions {
/**
* How long this bar will be slided up and down. Possible values are "slow", "default", "normal", "fast".
*/
animationSpeed?: string;
}
interface NotifyBarOptionsForAnimationSpeedNumber extends NotifyBarOptions {
/**
* How long this bar will be slided up and down.
*/
animationSpeed?: number;
}
}
interface JQueryStatic {
/**
* Show notify bar.
*
* @param options notify bar options
*/
notifyBar(options?: JQueryNotifyBar.NotifyBarOptions): void;
}