001package react4j.dom.proptypes.cssPropertyTypes;
002
003import java.lang.annotation.Documented;
004import javax.annotation.Nonnull;
005import org.intellij.lang.annotations.MagicConstant;
006
007@Documented
008@MagicConstant( valuesFromClass = AnimationFillMode.class )
009public @interface AnimationFillMode
010{
011  @Nonnull
012  String none = "none";
013  @Nonnull
014  String forwards = "forwards";
015  @Nonnull
016  String backwards = "backwards";
017  @Nonnull
018  String both = "both";
019  @Nonnull
020  String initial = "initial";
021  @Nonnull
022  String inherit = "inherit";
023}