@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 309 B
TypeScript
import * as React from 'react';
import { ReactNode } from 'react';
export interface GridListProps {
children: ReactNode[];
className?: string;
rowHeight?: number | string;
showZebraRows?: boolean;
}
declare const GridList: (props: GridListProps) => React.JSX.Element;
export default GridList;