UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

24 lines (23 loc) 912 B
import { IgrSortingEventArgsDetail } from "./igr-sorting-event-args-detail"; import { SortingEventArgs as SortingEventArgs_internal } from "./SortingEventArgs"; import { ContentChildrenManager } from "igniteui-react-core"; /** * Represents event arguments related to sorting and grouping operations * The event is cancelable */ export declare class IgrSortingEventArgs { protected createImplementation(): SortingEventArgs_internal; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): SortingEventArgs_internal; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(); protected _provideImplementation(i: any): void; get detail(): IgrSortingEventArgsDetail; set detail(v: IgrSortingEventArgsDetail); }