mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-21 11:09:53 +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;
|
|
} |