igniteui-react-grids
Version:
Ignite UI React grid components.
27 lines (11 loc) • 409 B
TypeScript
/* csSuppress */
/**
* Represents a class implementing the IGridSortingStrategy interface with a no-operation sorting strategy.
* It performs no sorting and returns the data as it is.
*/
export declare class IgcNoopSortingStrategy
{
public static instance(): IgcNoopSortingStrategy;
/* csSuppress */
public sort(data: any[]): any[];
}