igniteui-webcomponents-datasources
Version:
Reference custom data providers for the Ignite UI Web Components data source.
15 lines (14 loc) • 453 B
TypeScript
import { EntityProperty } from "./EntityProperty";
import { XElement } from "igniteui-webcomponents-core";
export declare class Entity {
private _properties;
private _primaryKey;
constructor(name: string, entityNode: XElement);
private _name;
get name(): string;
set name(value: string);
get properties(): Map<string, EntityProperty>;
get primaryKey(): string[];
private loadProperties;
private loadPrimaryKey;
}