mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
24 lines
507 B
TypeScript
Executable File
24 lines
507 B
TypeScript
Executable File
|
|
|
|
///<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;
|
|
} |