angular2
Version:
Angular 2 - a web framework for modern web apps
11 lines • 398 B
JavaScript
export class CssAnimationOptions {
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 = [];
}
}
//# sourceMappingURL=css_animation_options.js.map