Update raphael.d.ts

add required parameter 'el: RaphaelElement' to RaphaelSet.insertBefore() and RaphaelSet.insertAfter()
This commit is contained in:
kashlakov
2015-10-26 11:10:34 +09:00
parent a8f4ecb936
commit b26a3d7ce5
+2 -2
View File
@@ -129,8 +129,8 @@ interface RaphaelSet {
hide(): RaphaelSet;
hover(f_in: Function, f_out: Function, icontext?: any, ocontext?: any): RaphaelSet;
id: string;
insertAfter(): RaphaelSet;
insertBefore(): RaphaelSet;
insertAfter(el: RaphaelElement): RaphaelSet;
insertBefore(el: RaphaelElement): RaphaelSet;
isPointInside(x: number, y: number): boolean;
isVisible(): boolean;
matrix: RaphaelMatrix;