2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* AnimateOnScroll manages PrimeFlex CSS classes declaratively to during enter/leave animations on scroll or on page load.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://primevue.org/animateonscroll)
|
|
|
|
*
|
|
|
|
* @module animateonscrollstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-24 13:44:43 +00:00
|
|
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum AnimateOnScrollClasses {}
|
|
|
|
|
2023-10-24 13:44:43 +00:00
|
|
|
export interface AnimateOnScrollStyle extends BaseStyle {}
|