UNPKG

@adaptabletools/adaptable

Version:

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

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