Update VirtualScroller.d.ts

pull/3999/head
Tuğçe Küçükoğlu 2023-06-20 12:51:09 +03:00
parent c66706faa1
commit f1f77d62a6
1 changed files with 4 additions and 4 deletions

View File

@ -115,10 +115,6 @@ export interface VirtualScrollerPassThroughOptions {
* Uses to pass attributes to the content's DOM element. * Uses to pass attributes to the content's DOM element.
*/ */
content?: VirtualScrollerPassThroughOptionType; content?: VirtualScrollerPassThroughOptionType;
/**
* Uses to pass attributes to the spacer's DOM element.
*/
spacer?: VirtualScrollerPassThroughOptionType;
/** /**
* Uses to pass attributes to the loader's DOM element. * Uses to pass attributes to the loader's DOM element.
*/ */
@ -127,6 +123,10 @@ export interface VirtualScrollerPassThroughOptions {
* Uses to pass attributes to the loading icon's DOM element. * Uses to pass attributes to the loading icon's DOM element.
*/ */
loadingIcon?: VirtualScrollerPassThroughOptionType; loadingIcon?: VirtualScrollerPassThroughOptionType;
/**
* Uses to pass attributes to the spacer's DOM element.
*/
spacer?: VirtualScrollerPassThroughOptionType;
} }
/** /**