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

AnimateTimings

Represents animation-step timing parameters for an animation step.

type AnimateTimings = { duration: number; delay: number; easing: string | null; };
      
      type AnimateTimings = {
    duration: number;
    delay: number;
    easing: string | null;
};
    

See also