You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.0 KiB
51 lines
2.0 KiB
/**
|
|
* Pick the value for each `key` property from `obj` and return each one in a new object.
|
|
* If `names` are given, use them in the new object, instead of `keys`.
|
|
*
|
|
* If any `key` was not found or its value was `undefined`, nothing will be picked for that key.
|
|
*
|
|
* @param obj Object to pick from
|
|
* @param keys Keys to pick
|
|
* @param names Optional names to use in the output object
|
|
* @returns A new object containing a each `name` property and the picked value, or `undefined` if no keys were picked.
|
|
*/
|
|
export declare function pickValues<T>(obj: T, keys: (keyof T)[], names?: string[]): Record<string, unknown> | undefined;
|
|
/**
|
|
* Components of a package reference.
|
|
*/
|
|
export declare type PackageRef = {
|
|
scope?: string;
|
|
name: string;
|
|
};
|
|
/**
|
|
* Options which control how package dependecies are located.
|
|
*/
|
|
export declare type FindPackageDependencyOptions = {
|
|
/**
|
|
* Optional starting directory for the search. Defaults to `process.cwd()`.
|
|
*/
|
|
startDir?: string;
|
|
/**
|
|
* Optional flag controlling whether symlinks can be found. Defaults to `true`.
|
|
* When `false`, and the package dependency directory is a symlink, it will not
|
|
* be found.
|
|
*/
|
|
allowSymlinks?: boolean;
|
|
/**
|
|
* Optional flag controlling whether to resolve symlinks. Defaults to `false`.
|
|
* Note that this flag has no effect if `allowSymlinks` is `false`.
|
|
*/
|
|
resolveSymlinks?: boolean;
|
|
};
|
|
/**
|
|
* Find the package dependency's directory, starting from the given directory
|
|
* and moving outward, through all parent directories.
|
|
*
|
|
* Package dependencies exist under 'node_modules/[`scope`]/[`name`]'.
|
|
*
|
|
* @param ref Package dependency reference
|
|
* @param options Options which control the search
|
|
* @returns Path to the package dependency's directory, or `undefined` if not found.
|
|
*/
|
|
export declare function findPackageDependencyDir(ref: string | PackageRef, options?: FindPackageDependencyOptions): string | undefined;
|
|
//# sourceMappingURL=findPackageDependencyDir.d.ts.map
|