Sha256: eed362bb69f02efd66fbe7050f1681f87751209cea8c877d5ee3e00d1ae36bb5

Contents?: true

Size: 1.06 KB

Versions: 72

Compression:

Stored size: 1.06 KB

Contents

declare const pTry: {
	/**
	Start a promise chain.

	@param fn - The function to run to start the promise chain.
	@param arguments - Arguments to pass to `fn`.
	@returns The value of calling `fn(...arguments)`. If the function throws an error, the returned `Promise` will be rejected with that error.

	@example
	```
	import pTry = require('p-try');

	(async () => {
		try {
			const value = await pTry(() => {
				return synchronousFunctionThatMightThrow();
			});
			console.log(value);
		} catch (error) {
			console.error(error);
		}
	})();
	```
	*/
	<ValueType, ArgumentsType extends unknown[]>(
		fn: (...arguments: ArgumentsType) => PromiseLike<ValueType> | ValueType,
		...arguments: ArgumentsType
	): Promise<ValueType>;

	// TODO: remove this in the next major version, refactor the whole definition to:
	// declare function pTry<ValueType, ArgumentsType extends unknown[]>(
	//	fn: (...arguments: ArgumentsType) => PromiseLike<ValueType> | ValueType,
	//	...arguments: ArgumentsType
	// ): Promise<ValueType>;
	// export = pTry;
	default: typeof pTry;
};

export = pTry;

Version data entries

72 entries across 71 versions & 12 rubygems

Version Path
trusty-cms-5.0.6 node_modules/p-try/index.d.ts
trusty-cms-5.0.5 node_modules/p-try/index.d.ts
trusty-cms-5.0.4 node_modules/p-try/index.d.ts
disco_app-0.16.1 test/dummy/node_modules/p-try/index.d.ts
isomorfeus-puppetmaster-0.5.5 node_modules/p-try/index.d.ts
isomorfeus-puppetmaster-0.5.4 node_modules/p-try/index.d.ts
disco_app-0.15.2 test/dummy/node_modules/p-try/index.d.ts
isomorfeus-puppetmaster-0.5.3 node_modules/p-try/index.d.ts
trusty-cms-5.0.3 node_modules/p-try/index.d.ts
trusty-cms-5.0.2 node_modules/p-try/index.d.ts
disco_app-0.18.4 test/dummy/node_modules/p-try/index.d.ts
disco_app-0.18.1 test/dummy/node_modules/p-try/index.d.ts
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/p-try/index.d.ts
disco_app-0.14.0 test/dummy/node_modules/p-try/index.d.ts
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/p-try/index.d.ts
trusty-cms-5.0.1 node_modules/p-try/index.d.ts
trusty-cms-4.3.5 node_modules/p-try/index.d.ts
trusty-cms-5.0.0 node_modules/p-try/index.d.ts
isomorfeus-puppetmaster-0.5.2 node_modules/p-try/index.d.ts
isomorfeus-puppetmaster-0.5.1 node_modules/p-try/index.d.ts