(animation: AnimationMetadata | AnimationMetadata[])
| 134 | } |
| 135 | |
| 136 | override build(animation: AnimationMetadata | AnimationMetadata[]): AnimationFactory { |
| 137 | const id = this._nextAnimationId; |
| 138 | this._nextAnimationId++; |
| 139 | const entry = Array.isArray(animation) ? sequence(animation) : animation; |
| 140 | issueAnimationCommand(this._renderer, null, id, 'register', [entry]); |
| 141 | return new BrowserAnimationFactory(id, this._renderer); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | class BrowserAnimationFactory extends AnimationFactory { |
nothing calls this directly
no test coverage detected