Made a few small changes to address merge feedback.

This commit is contained in:
David Lipowicz
2015-06-23 14:30:08 -07:00
parent 35de88ab7d
commit f7803b5aac
+3 -3
View File
@@ -21,9 +21,9 @@ declare module SigmaJs{
}
interface Canvas {
edges: {[renderType: string]: Function};
labels: {[renderType: string]: Function};
nodes: {[renderType: string]: Function};
edges: {[renderType: string]: (edge: Edge, source: Node, target: Node, ...a:any[]) => void};
labels: {[renderType: string]: (node: Node, ...a:any[]) => void};
nodes: {[renderType: string]: (node: Node, ...a:any[]) => void};
}
interface Classes {