UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

20 lines (19 loc) 527 B
import { IgrCellInfo } from "./igr-cell-info"; import { RowSeparatorModel as RowSeparatorModel_internal } from "./RowSeparatorModel"; /** * Represents backing information for the row separators. */ export class IgrRowSeparatorInfo extends IgrCellInfo { createImplementation() { return new RowSeparatorModel_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } }