6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
import * as React from 'react';
|
|
/**
|
|
* The ref type of the inner grid root container.
|
|
*/
|
|
export type GridRootContainerRef = React.RefObject<HTMLDivElement>;
|