UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

20 lines (19 loc) 517 B
import { IgcCellInfo } from "./igc-cell-info"; import { EditorRowCellModel as EditorRowCellModel_internal } from "./EditorRowCellModel"; /** * Represents info about the current cell. */ export class IgcEditorRowCellInfo extends IgcCellInfo { createImplementation() { return new EditorRowCellModel_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } }