Make options for resizable extend events in 'jqueryui'.

This commit is contained in:
Daniel Rosenwasser
2015-08-11 17:24:45 -07:00
parent 98f5ec12f0
commit 9d15a87ca0
+2 -2
View File
@@ -529,7 +529,7 @@ declare module JQueryUI {
// Resizable //////////////////////////////////////////////////
interface ResizableOptions {
interface ResizableOptions extends ResizableEvents {
alsoResize?: any; // Selector, JQuery or Element
animate?: boolean;
animateDuration?: any; // number or string
@@ -571,7 +571,7 @@ declare module JQueryUI {
stop?: ResizableEvent;
}
interface Resizable extends Widget, ResizableOptions, ResizableEvents {
interface Resizable extends Widget, ResizableOptions {
}