docs: update animations with @publicApi tags (#26595)

PR Close #26595
This commit is contained in:
Pete Bacon Darwin
2018-10-19 14:42:30 +01:00
committed by Alex Rickabaugh
parent 0bae97a726
commit 42c331bbf2
4 changed files with 71 additions and 7 deletions

View File

@ -52,10 +52,11 @@ import {AnimationPlayer} from './players/animation_player';
* }
* ```
*
* @publicApi
*/
export abstract class AnimationBuilder {
/**
* Builds a factory for producing a defined animation.
* Builds a factory for producing a defined animation.
* @param animation A reusable animation definition.
* @returns A factory object that can create a player for the defined animation.
* @see `animate()`
@ -66,6 +67,7 @@ export abstract class AnimationBuilder {
/**
* A factory object returned from the `AnimationBuilder`.`build()` method.
*
* @publicApi
*/
export abstract class AnimationFactory {
/**