UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

12 lines (11 loc) 436 B
import * as React from 'react'; import { IColItem } from '../../UIInterfaces'; import { BoxProps } from '../../../components/Flex'; export interface AdaptableObjectCollectionProps extends BoxProps { className?: string; colItems: IColItem[]; items: any[]; allowOverflow?: boolean; style?: React.CSSProperties; } export declare const AdaptableObjectCollection: React.FunctionComponent<AdaptableObjectCollectionProps>;