@anglr/grid
Version:
Angular module displaying grid
16 lines • 744 B
TypeScript
import { PipeTransform } from '@angular/core';
import * as i0 from "@angular/core";
/**
* Reads value from object and returns it, can address nested objects using '.' notation
*/
export declare class ReadValuePipe implements PipeTransform {
/**
* Reads value from object and returns it, can address nested objects using '.' notation
* @param value - Object storing requested value
* @param path - Path to property which value should be obtained
*/
transform<TValue>(value: TValue, path: string | undefined | null): unknown;
static ɵfac: i0.ɵɵFactoryDeclaration<ReadValuePipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<ReadValuePipe, "readValue", true>;
}
//# sourceMappingURL=readValue.pipe.d.ts.map