larsvanbraam/transition-controller

View on GitHub
src/lib/enum/TimelineType.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * This enum contains the different timeline types that are available
 */
enum TimelineType {
  /**
   * This is the value for transition in timelines
   */
  IN,

  /**
   * This is the value for transition out timelines
   */
  OUT,

  /**
   * This is the value for the looping timeline
   */
  LOOPING,
}

export default TimelineType;