mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Merge pull request #2449 from darkthread/master
Fix indentation (replace tab with spaces)
This commit is contained in:
Vendored
+15
-15
@@ -98,32 +98,32 @@ interface JQBlockUIOptions {
|
||||
}
|
||||
|
||||
interface JQBlockUIStatic {
|
||||
/** default options */
|
||||
/** default options */
|
||||
default?: JQBlockUIOptions;
|
||||
/** block user activity for the page */
|
||||
/** block user activity for the page */
|
||||
(): void;
|
||||
/**
|
||||
* block user activity for the page
|
||||
* @param options options
|
||||
*/
|
||||
/**
|
||||
* block user activity for the page
|
||||
* @param options options
|
||||
*/
|
||||
(option: JQBlockUIOptions): void;
|
||||
}
|
||||
|
||||
interface JQueryStatic {
|
||||
/** block user activity for the page */
|
||||
/** block user activity for the page */
|
||||
blockUI?: JQBlockUIStatic;
|
||||
/** unblock the page */
|
||||
/** unblock the page */
|
||||
unblockUI?: () => void;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
/**
|
||||
* block the element(s)
|
||||
* @param options block options
|
||||
*/
|
||||
/**
|
||||
* block the element(s)
|
||||
* @param options block options
|
||||
*/
|
||||
block(option?: JQBlockUIOptions): JQuery;
|
||||
/**
|
||||
* unblock the element(s)
|
||||
*/
|
||||
/**
|
||||
* unblock the element(s)
|
||||
*/
|
||||
unblock(): JQuery;
|
||||
}
|
||||
Reference in New Issue
Block a user