@@ -218,7 +218,7 @@ export class AnimateProvider {
218218 * Note that this does not cancel the underlying operation, e.g. the setting of classes or
219219 * adding the element to the DOM.
220220 *
221- * @param {import('./animate-runner.js').AnimateRunner } runner An animation runner returned by an $animate function.
221+ * @param {import('./runner/ animate-runner.js').AnimateRunner } runner An animation runner returned by an $animate function.
222222 *
223223 * @example
224224 <example module="animationExample" deps="angular-animate.js" animations="true" name="animate-cancel">
@@ -282,7 +282,9 @@ export class AnimateProvider {
282282 </file>
283283 </example>
284284 */
285- cancel ( runner : import ( "./animate-runner.js" ) . AnimateRunner ) : void ;
285+ cancel (
286+ runner : import ( "./runner/animate-runner.js" ) . AnimateRunner ,
287+ ) : void ;
286288 /**
287289 * Inserts the element into the DOM either after the `after` element (if provided) or
288290 * as the first child within the `parent` element and then triggers an animation.
@@ -293,14 +295,14 @@ export class AnimateProvider {
293295 * @param {Element } parent - the parent element which will append the element as a child (so long as the after element is not present)
294296 * @param {Element } [after] - after the sibling element after which the element will be appended
295297 * @param {AnimationOptions } [options] - an optional collection of options/styles that will be applied to the element.
296- * @returns {import('./animate-runner.js').AnimateRunner } the animation runner
298+ * @returns {import('./runner/ animate-runner.js').AnimateRunner } the animation runner
297299 */
298300 enter (
299301 element : Element ,
300302 parent : Element ,
301303 after ?: Element ,
302304 options ?: AnimationOptions ,
303- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
305+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
304306 /**
305307 * Inserts (moves) the element into its new position in the DOM either after
306308 * the `after` element (if provided) or as the first child within the `parent` element
@@ -311,27 +313,27 @@ export class AnimateProvider {
311313 * @param {Element } parent - the parent element which will append the element as a child (so long as the after element is not present)
312314 * @param {Element } after - after the sibling element after which the element will be appended
313315 * @param {AnimationOptions } [options] - an optional collection of options/styles that will be applied to the element.
314- * @returns {import('./animate-runner.js').AnimateRunner } the animation runner
316+ * @returns {import('./runner/ animate-runner.js').AnimateRunner } the animation runner
315317 */
316318 move (
317319 element : Element ,
318320 parent : Element ,
319321 after : Element ,
320322 options ?: AnimationOptions ,
321- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
323+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
322324 /**
323325 * Triggers an animation and then removes the element from the DOM.
324326 * When the function is called a promise is returned that will be resolved during the next
325327 * digest once the animation has completed.
326328 *
327329 * @param {Element } element the element which will be removed from the DOM
328330 * @param {AnimationOptions } [options] an optional collection of options/styles that will be applied to the element.
329- * @returns {import('./animate-runner.js').AnimateRunner } the animation runner
331+ * @returns {import('./runner/ animate-runner.js').AnimateRunner } the animation runner
330332 */
331333 leave (
332334 element : Element ,
333335 options ?: AnimationOptions ,
334- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
336+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
335337 /**
336338 * Triggers an addClass animation surrounding the addition of the provided CSS class(es). Upon
337339 * execution, the addClass operation will only be handled after the next digest and it will not trigger an
@@ -343,13 +345,13 @@ export class AnimateProvider {
343345 * @param {Element } element the element which the CSS classes will be applied to
344346 * @param {string } className the CSS class(es) that will be added (multiple classes are separated via spaces)
345347 * @param {AnimationOptions } [options] an optional collection of options/styles that will be applied to the element.
346- * @return {import('./animate-runner.js').AnimateRunner }} animationRunner the animation runner
348+ * @return {import('./runner/ animate-runner.js').AnimateRunner }} animationRunner the animation runner
347349 */
348350 addClass (
349351 element : Element ,
350352 className : string ,
351353 options ?: AnimationOptions ,
352- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
354+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
353355 /**
354356 * Triggers a removeClass animation surrounding the removal of the provided CSS class(es). Upon
355357 * execution, the removeClass operation will only be handled after the next digest and it will not trigger an
@@ -361,13 +363,13 @@ export class AnimateProvider {
361363 * @param {Element } element the element which the CSS classes will be applied to
362364 * @param {string } className the CSS class(es) that will be removed (multiple classes are separated via spaces)
363365 * @param {AnimationOptions } [options] an optional collection of options/styles that will be applied to the element. *
364- * @return {import('./animate-runner.js').AnimateRunner } animationRunner the animation runner
366+ * @return {import('./runner/ animate-runner.js').AnimateRunner } animationRunner the animation runner
365367 */
366368 removeClass (
367369 element : Element ,
368370 className : string ,
369371 options ?: AnimationOptions ,
370- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
372+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
371373 /**
372374 * Performs both the addition and removal of a CSS classes on an element and (during the process)
373375 * triggers an animation surrounding the class addition/removal. Much like `$animate.addClass` and
@@ -381,14 +383,14 @@ export class AnimateProvider {
381383 * @param {string } remove the CSS class(es) that will be removed (multiple classes are separated via spaces)
382384 * @param {object= } options an optional collection of options/styles that will be applied to the element.
383385 *
384- * @return {import('./animate-runner.js').AnimateRunner } the animation runner
386+ * @return {import('./runner/ animate-runner.js').AnimateRunner } the animation runner
385387 */
386388 setClass (
387389 element : Element ,
388390 add : string ,
389391 remove : string ,
390392 options ?: object | undefined ,
391- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
393+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
392394 /**
393395 * Performs an inline animation on the element which applies the provided to and from CSS styles to the element.
394396 * If any detected CSS transition, keyframe or JavaScript matches the provided className value, then the animation will take
@@ -408,15 +410,15 @@ export class AnimateProvider {
408410 * }
409411 * });
410412 * ```
411- * @return {import('./animate-runner.js').AnimateRunner } the animation runner
413+ * @return {import('./runner/ animate-runner.js').AnimateRunner } the animation runner
412414 */
413415 animate (
414416 element : any ,
415417 from : any ,
416418 to : any ,
417419 className : any ,
418420 options : any ,
419- ) : import ( "./animate-runner.js" ) . AnimateRunner ;
421+ ) : import ( "./runner/ animate-runner.js" ) . AnimateRunner ;
420422 } )
421423 ) [ ] ;
422424}
0 commit comments