Bug fixes: noty constructor typo, NotyOptions property timeout had bool instead of number type

This commit is contained in:
Aaron King
2013-05-09 10:19:05 -04:00
parent 12d8118688
commit cb1faccff2
+3 -3
View File
@@ -13,7 +13,7 @@ interface NotyOptions {
dismissQueue?: bool;
template?: string;
animation?: NotyAnimationOptions;
timeout?: bool;
timeout?: number;
force?: bool;
modal?: bool;
closeWith?: Array;
@@ -37,7 +37,7 @@ interface NotyCallbackOptions {
interface NotyStatic {
(NotyOptions?);
(notyOptions: NotyOptions);
get(id: any);
close(id: any);
@@ -54,7 +54,7 @@ interface JQueryStatic {
declare var noty: {
(NotyOptions?);
(notyOptions: NotyOptions);
show();
close();