2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* DeferredContent postpones the loading the content that is initially not in the viewport until it becomes visible on scroll.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/deferredcontent/)
|
|
|
|
*
|
|
|
|
* @module deferredcontentstyle
|
|
|
|
*
|
|
|
|
*/
|
2023-10-02 13:15:41 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum DeferredContentClasses {}
|
|
|
|
|
2023-10-02 13:15:41 +00:00
|
|
|
export interface DeferredContentStyle extends BaseStyle {}
|