igniteui-react-grids
Version:
Ignite UI React grid components.
20 lines (19 loc) • 573 B
JavaScript
import { IgrCellInfo } from "./igr-cell-info";
import { VerticalSeparatorCellModel as VerticalSeparatorCellModel_internal } from "./VerticalSeparatorCellModel";
/**
* Represents backing information for vertical separators.
*/
export class IgrVerticalSeparatorCellInfo extends IgrCellInfo {
createImplementation() {
return new VerticalSeparatorCellModel_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor() {
super();
}
}