UNPKG

@adaptabletools/adaptable

Version:

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

13 lines (12 loc) 448 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; isSuspended?: boolean; } export declare class AdaptableObjectRow extends React.Component<AdaptableObjectRowProps, {}> { render(): any; }