UNPKG

@clr/angular

Version:

Angular components for Clarity

11 lines (10 loc) 266 B
/** * Generic accessor for deep object properties * that can be specified as simple dot-separated strings. */ export declare class NestedProperty<T = any> { private prop; private splitProp; constructor(prop: string); getPropValue(item: T): any; }