igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
26 lines (25 loc) • 813 B
TypeScript
import { WebBaseEventArgsDescription } from "./WebBaseEventArgsDescription";
import { WebSortingStrategyDescription } from "./WebSortingStrategyDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class WebSortingExpressionDescription extends WebBaseEventArgsDescription {
static $t: Type;
protected get_type(): string;
private static __marshalByValue1;
private static __marshalByValueAlias1;
constructor();
private t;
get fieldName(): string;
set fieldName(a: string);
private s;
get dir(): string;
set dir(a: string);
private p;
get ignoreCase(): boolean;
set ignoreCase(a: boolean);
private m;
get strategy(): WebSortingStrategyDescription;
set strategy(a: WebSortingStrategyDescription);
}