Fixed jointjs error on TypeScript 0.9.5

This commit is contained in:
vvakame
2013-12-08 23:36:57 +09:00
parent d4f57c7c1f
commit 456a3f06f3

View File

@@ -34,7 +34,7 @@ declare module joint {
embed(cell: Cell);
unembed(cell: Cell);
getEmbeddedCells(): Cell[];
clone<T>(opt?: any): T; // @todo: return can either be Cell or Cell[].
clone(opt?: any): Backbone.Model; // @todo: return can either be Cell or Cell[].
attr(attrs: any): Cell;
}