igniteui-react-core
Version:
Ignite UI React Core.
15 lines (14 loc) • 424 B
TypeScript
import { Base, Type } from "./type";
import { DescriptionPathIndexer } from "./DescriptionPathIndexer";
/**
* @hidden
*/
export declare class DescriptionPathSegment extends Base {
static $t: Type;
private _elementName;
get elementName(): string;
set elementName(a: string);
private _indexers;
get indexers(): DescriptionPathIndexer[];
set indexers(a: DescriptionPathIndexer[]);
}