UNPKG

@adaptabletools/adaptable-cjs

Version:

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

14 lines (13 loc) 472 B
import * as React from 'react'; import { IColItem } from '../../UIInterfaces'; export interface AdaptableObjectRowProps extends React.ClassAttributes<AdaptableObjectRow> { colItems: IColItem[]; fontSize?: string; onClick?: (e: React.SyntheticEvent) => void; style?: React.CSSProperties; className?: string; isSuspended?: boolean; } export declare class AdaptableObjectRow extends React.Component<AdaptableObjectRowProps, {}> { render(): any; }