igniteui-react-grids
Version:
Ignite UI React grid components.
25 lines (24 loc) • 1.1 kB
TypeScript
import * as React from 'react';
import { IgrBaseToolbarColumnActionsDirective, IIgrBaseToolbarColumnActionsDirectiveProps } from "./igr-base-toolbar-column-actions-directive";
import { GridToolbarPinning } from "./GridToolbarPinning";
/**
* Provides a pre-configured column pinning component for the grid.
* @igxModule IgxGridToolbarModule
* @igxParent IgxGridToolbarComponent
* @example
* ```html
* ```
*/
export declare class IgrGridToolbarPinning<P extends IIgrGridToolbarPinningProps = IIgrGridToolbarPinningProps> extends IgrBaseToolbarColumnActionsDirective<P> {
protected createImplementation(): GridToolbarPinning;
/**
* @hidden
*/
get i(): GridToolbarPinning;
constructor(props: P & Omit<React.HTMLAttributes<HTMLElement>, keyof P>);
render(): React.DetailedReactHTMLElement<any, HTMLElement>;
protected _elRef: HTMLElement;
protected _getMainRef(ref: any): void;
}
export interface IIgrGridToolbarPinningProps extends IIgrBaseToolbarColumnActionsDirectiveProps {
}