Update raphael.d.ts

add required parameter 'el: RaphaelElement' to insertAfter() and insertBefore() methods
This commit is contained in:
kashlakov
2015-10-26 11:07:45 +09:00
parent 3191f6e008
commit a8f4ecb936

View File

@@ -42,8 +42,8 @@ interface RaphaelElement {
hide(): RaphaelElement;
hover(f_in: Function, f_out: Function, icontext?: any, ocontext?: any): RaphaelElement;
id: string;
insertAfter(): RaphaelElement;
insertBefore(): RaphaelElement;
insertAfter(el: RaphaelElement): RaphaelElement;
insertBefore(el: RaphaelElement): RaphaelElement;
isPointInside(x: number, y: number): boolean;
isVisible(): boolean;
matrix: RaphaelMatrix;