Added return types where necessary.

This commit is contained in:
EWOUT-QMINO\Ewout
2015-02-10 08:55:17 +01:00
parent 056a747569
commit 42c7718ad5
2 changed files with 27 additions and 26 deletions
+7 -7
View File
@@ -25,14 +25,14 @@ declare module joint{
model : Backbone.Collection<joint.dia.Cell>
});
createSelectionBox(cellView:joint.dia.CellView);
destroySelectionBox(cellView:joint.dia.CellView);
startSelecting(evt:any);
cancelSelection();
createSelectionBox(cellView:joint.dia.CellView) : void;
destroySelectionBox(cellView:joint.dia.CellView) : void;
startSelecting(evt:any) : void;
cancelSelection() : void;
addHandle(handle:Handle);
removeHandle(name:string);
changeHandle(name:string, handle:Handle);
addHandle(handle:Handle) : void;
removeHandle(name:string) : void;
changeHandle(name:string, handle:Handle) : void;
}
}
}