mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
add leanModal
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
|
||||
|
||||
///<reference path="../jquery/jquery.d.ts" />
|
||||
|
||||
interface JQueryLeanModalOption {
|
||||
top : number;
|
||||
overlay : number;
|
||||
closeButton : String;
|
||||
}
|
||||
|
||||
interface JQueryLeanModalStatic {
|
||||
():any;
|
||||
(JQueryLeanModalOption):any;
|
||||
}
|
||||
|
||||
interface JQueryStatic {
|
||||
leanModal(): JQueryLeanModalStatic;
|
||||
leanModal(JQueryLeanModalOption): JQueryLeanModalStatic;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
leanModal(): JQueryLeanModalStatic;
|
||||
leanModal(JQueryLeanModalOption): JQueryLeanModalStatic;
|
||||
}
|
||||
Reference in New Issue
Block a user