UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

23 lines (22 loc) 505 B
import { Type } from "igniteui-react-core"; /** * Enumeration defining different positions a column can be fixed against. */ export declare enum PinnedPositions { /** * The column is not fixed. */ None = 0, /** * The column is pinned against the left side of the grid. */ Left = 1, /** * The column is pinned against the right side of the grid. */ Right = 2 } /** * @hidden */ export declare let PinnedPositions_$type: Type;