react-application-core
Version:
A react-based application core for the business applications.
25 lines (24 loc) • 685 B
TypeScript
/// <reference types="react" />
import { GenericComponent } from '../../base/generic.component';
import { IGridRowProps } from '../../../definition';
export declare class GridRow extends GenericComponent<IGridRowProps> {
static readonly defaultProps: IGridRowProps;
/**
* @stable [17.08.2020]
* @param originalProps
*/
constructor(originalProps: IGridRowProps);
/**
* @stable [23.10.2019]
* @returns {JSX.Element}
*/
render(): JSX.Element;
/**
* @stable [19.07.2020]
*/
private onClick;
/**
* @stable [17.08.2020]
*/
protected get componentsSettingsProps(): IGridRowProps;
}