interface AnimationOptions {
    addClass: string;
    from: any;
    removeClass: string;
    to: string;
}

Properties

addClass: string

space-separated CSS classes to add to element

from: any

CSS properties & values at the beginning of animation. Must have matching to

removeClass: string

space-separated CSS classes to remove from element

to: string

CSS properties & values at end of animation. Must have matching from