@raona/components
Version:
React components used at Raona to work with SPFx
22 lines (21 loc) • 1.04 kB
TypeScript
import { Nullable } from '@raona/sp/dist/entities/Nullable';
/**
* Return web element to infinite scroll
* @deprecated use instead the one without old, this is only if your tenant has not received the classes minification update yet
*/
export declare function getSPScrollContainer_old(): Nullable<HTMLElement>;
/**
* Return string parameter to infinite scroll
* @deprecated use instead the one without old, this is only if your tenant has not received the classes minification update yet
*/
export declare function getSPScrollContainerSelector_old(): string;
/**
* Return web element to infinite scroll
* @remark use instead the one with old, if your tenant has not received the classes minification update yet
*/
export declare function getSPScrollContainer(): Nullable<HTMLElement>;
/**
* Return string parameter to infinite scroll
* @remark use instead the one with old, if your tenant has not received the classes minification update yet
*/
export declare function getSPScrollContainerSelector(): string;