fixed syntax error, missing parameter name

This commit is contained in:
Matthew James Davis
2013-10-22 10:19:20 -04:00
parent c8c8718a10
commit b1179617ff
+2 -2
View File
@@ -986,13 +986,13 @@ declare module 'mapsjs' {
* @returns {function} Function with the signature animation(pathElement, loopback).
*/
getAnimation(): (pathElement: HTMLElement, loopback: () => void) => void;
/**
* You can use the loopback parameter on complete to call itself and
* create repeating animation.
* @param {function} Function with the signature animation(pathElement, loopback).
*/
setAnimation((pathElement: HTMLElement, loopback: () => void) => void): void;
setAnimation(action: (pathElement: HTMLElement, loopback: () => void) => void): void;
/**
* Renders this geometry as an SVG path. Note: We attach original