15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
/**
|
|
*
|
|
* 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
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum DeferredContentClasses {}
|
|
|
|
export interface DeferredContentStyle extends BaseStyle {}
|