Update snap-svg.d.ts

This commit is contained in:
lhk
2014-11-25 18:46:58 +01:00
parent fcb3fc4ba6
commit 6836c0b1ec
+4 -2
View File
@@ -187,9 +187,11 @@ declare module Snap {
}
export interface Fragment {
//TODO: The documentation says that selectAll returns a set, but the getting started guide
// uses .attr on the returned object. That's not supported by a set
select(query:string):Snap.Element;
selectAll(query:string):Snap.Set;
selectAll():Snap.Set;
selectAll(query:string):any;
selectAll():any;
}
export interface Matrix {