10 lines
322 B
TypeScript
10 lines
322 B
TypeScript
import { GridRenderContext } from '../params/gridScrollParams';
|
|
export interface GridVirtualScrollerApi {
|
|
/**
|
|
* Get the current grid rendering context.
|
|
* @returns {GridRenderContext} The `GridRenderContext`.
|
|
* @ignore - do not document.
|
|
*/
|
|
unstable_getRenderContext: () => GridRenderContext;
|
|
}
|