Add 'element' and 'tether' to Drop typings

This commit is contained in:
Adi Dahiya
2015-04-23 14:11:09 -04:00
parent a585282c8a
commit 391ff639b1
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -22,6 +22,8 @@ d.remove();
d.toggle();
d.position();
d.destroy();
d.element.appendChild(document.createElement("div"));
d.tether.position();
d.on("open", () => null);
d.on("close", () => null);
+2
View File
@@ -30,6 +30,8 @@ declare module drop {
interface Drop {
content: HTMLElement;
element: HTMLElement;
tether: tether.Tether;
open(): void;
close(): void;
remove(): void;