From 456a3f06f30a526f4041d2ca4ace7a8d6f307a1b Mon Sep 17 00:00:00 2001 From: vvakame Date: Sun, 8 Dec 2013 23:36:57 +0900 Subject: [PATCH] Fixed jointjs error on TypeScript 0.9.5 --- jointjs/jointjs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jointjs/jointjs.d.ts b/jointjs/jointjs.d.ts index 547263021..88c67290c 100644 --- a/jointjs/jointjs.d.ts +++ b/jointjs/jointjs.d.ts @@ -34,7 +34,7 @@ declare module joint { embed(cell: Cell); unembed(cell: Cell); getEmbeddedCells(): Cell[]; - clone(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; }