1 | import { Input } from '../../../commands';
|
2 | import { Configuration } from '../../configuration';
|
3 | export declare function getValueOrDefault<T = any>(configuration: Required<Configuration>, propertyPath: string, appName: string, key?: 'path' | 'webpack' | 'webpackPath' | 'entryFile' | 'sourceRoot' | 'exec', options?: Input[], defaultValue?: T): T;
|
4 | export declare function getValueOfPath<T = any>(object: Record<string, any>, propertyPath: string): T;
|