UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

19 lines (18 loc) 588 B
import { IgrCellInfo } from "./igr-cell-info"; import { TextCellModel as TextCellModel_internal } from "./TextCellModel"; /** * Backing information for a text cell in the grid. */ export declare class IgrTextCellInfo extends IgrCellInfo { protected createImplementation(): TextCellModel_internal; /** * @hidden */ get i(): TextCellModel_internal; constructor(); /** * Sets or gets the text value for the cell. */ get textValue(): string; set textValue(v: string); }