Sha256: 82bf3772616ba306ba63c84550e2c45072f829abdb4392a54defe39a4e587b26

Contents?: true

Size: 1.54 KB

Versions: 53

Compression:

Stored size: 1.54 KB

Contents

declare namespace locatePath {
	interface Options {
		/**
		Current working directory.

		@default process.cwd()
		*/
		readonly cwd?: string;

		/**
		Type of path to match.

		@default 'file'
		*/
		readonly type?: 'file' | 'directory';

		/**
		Allow symbolic links to match if they point to the requested path type.

		@default true
		*/
		readonly allowSymlinks?: boolean;
	}

	interface AsyncOptions extends Options {
		/**
		Number of concurrently pending promises. Minimum: `1`.

		@default Infinity
		*/
		readonly concurrency?: number;

		/**
		Preserve `paths` order when searching.

		Disable this to improve performance if you don't care about the order.

		@default true
		*/
		readonly preserveOrder?: boolean;
	}
}

declare const locatePath: {
	/**
	Get the first path that exists on disk of multiple paths.

	@param paths - Paths to check.
	@returns The first path that exists or `undefined` if none exists.

	@example
	```
	import locatePath = require('locate-path');

	const files = [
		'unicorn.png',
		'rainbow.png', // Only this one actually exists on disk
		'pony.png'
	];

	(async () => {
		console(await locatePath(files));
		//=> 'rainbow'
	})();
	```
	*/
	(paths: Iterable<string>, options?: locatePath.AsyncOptions): Promise<
		string | undefined
	>;

	/**
	Synchronously get the first path that exists on disk of multiple paths.

	@param paths - Paths to check.
	@returns The first path that exists or `undefined` if none exists.
	*/
	sync(
		paths: Iterable<string>,
		options?: locatePath.Options
	): string | undefined;
};

export = locatePath;

Version data entries

53 entries across 46 versions & 8 rubygems

Version Path
trusty-cms-6.3.1 node_modules/locate-path/index.d.ts
optimacms-0.1.61 spec/dummy/node_modules/@rails/webpacker/node_modules/locate-path/index.d.ts
optimacms-0.1.61 spec/dummy/node_modules/compression-webpack-plugin/node_modules/locate-path/index.d.ts
trusty-cms-5.0.7 node_modules/locate-path/index.d.ts
trusty-cms-5.0.6 node_modules/locate-path/index.d.ts
trusty-cms-5.0.5 node_modules/locate-path/index.d.ts
trusty-cms-5.0.4 node_modules/locate-path/index.d.ts
disco_app-0.16.1 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
isomorfeus-puppetmaster-0.5.5 node_modules/locate-path/index.d.ts
isomorfeus-puppetmaster-0.5.4 node_modules/locate-path/index.d.ts
disco_app-0.15.2 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
isomorfeus-puppetmaster-0.5.3 node_modules/locate-path/index.d.ts
trusty-cms-5.0.3 node_modules/locate-path/index.d.ts
trusty-cms-5.0.2 node_modules/locate-path/index.d.ts
disco_app-0.18.4 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
disco_app-0.18.1 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
disco_app-0.14.0 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.d.ts
trusty-cms-5.0.1 node_modules/locate-path/index.d.ts