mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
22 lines
597 B
TypeScript
Executable File
22 lines
597 B
TypeScript
Executable File
// Type definitions for leanModal.js 1.1
|
|
// Project: http://leanmodal.finelysliced.com.au/
|
|
// Definitions by: FinelySliced <https://github.com/FinelySliced>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
///<reference path="../jquery/jquery.d.ts" />
|
|
|
|
interface JQueryLeanModalOption {
|
|
top? : number;
|
|
overlay? : number;
|
|
closeButton? : String;
|
|
}
|
|
|
|
interface JQueryStatic {
|
|
leanModal(): JQuery;
|
|
leanModal(val : JQueryLeanModalOption): JQuery;
|
|
}
|
|
|
|
interface JQuery {
|
|
leanModal(): JQuery;
|
|
leanModal(val : JQueryLeanModalOption): JQuery;
|
|
} |