UNPKG

clarity-angular

Version:

Angular components for Clarity

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