This is the archived documentation for Angular v5. Please visit angular.io to see documentation for the current version of Angular.

AnimationSequenceMetadata

npm Package @angular/animations
Module import { AnimationSequenceMetadata } from '@angular/animations';
Source animations/src/animation_metadata.ts

Interface Overview

      
      interface AnimationSequenceMetadata extends AnimationMetadata { 
  steps: AnimationMetadata[]
  options: AnimationOptions | null
}
    

Description

Metadata representing the entry of animations. Instances of this interface are provided via the animation DSL when the sequence animation function is called.

Members


      
      options: AnimationOptions | null