export classCssAnimationOptions {
constructor() {
/** classes to be added to the element */this.classesToAdd = [];
/** classes to be removed from the element */this.classesToRemove = [];
/** classes to be added for the duration of the animation */this.animationClasses = [];
}
}