igniteui-webcomponents-datasources
Version:
Reference custom data providers for the Ignite UI Web Components data source.
13 lines (12 loc) • 339 B
TypeScript
export declare class EntityProperty {
constructor(name: string, schemaType: string);
private _name;
get name(): string;
set name(value: string);
private _isNullable;
get isNullable(): boolean;
set isNullable(value: boolean);
private _type;
get type(): string;
set type(value: string);
}