UNPKG

react-application-core

Version:

A react-based application core for the business applications.

20 lines (19 loc) 535 B
/// <reference types="react" /> import { IGridHeadProps } from '../../../definition'; import { GenericComponent } from '../../base/generic.component'; /** * @component-impl * @stable [20.05.2020] */ export declare class GridHead extends GenericComponent<IGridHeadProps> { /** * @stable [20.05.2020] * @returns {JSX.Element} */ render(): JSX.Element; /** * @stable [02.06.2020] * @returns {IGridHeadProps} */ protected get componentsSettingsProps(): IGridHeadProps; }