igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
22 lines (21 loc) • 620 B
TypeScript
import { Base, Type } from "./type";
import { DataSeriesIntent } from "./DataSeriesIntent";
import { List$1 } from "./List$1";
/**
* @hidden
*/
export declare class DataSeriesMemberPathHint extends Base {
static $t: Type;
private _path;
get path(): string;
set path(a: string);
private _intent;
get intent(): DataSeriesIntent;
set intent(a: DataSeriesIntent);
equals(a: any): boolean;
toString(): string;
update1(a: string, b?: string): void;
update(a: List$1<string>, b?: string): void;
hasPath(): boolean;
clone(): DataSeriesMemberPathHint;
}