123456789101112131415161718192021222324252627282930313233343536373839 |
- declare const pTry: {
-
- <ValueType, ArgumentsType extends unknown[]>(
- fn: (...arguments: ArgumentsType) => PromiseLike<ValueType> | ValueType,
- ...arguments: ArgumentsType
- ): Promise<ValueType>;
-
-
-
-
-
-
- default: typeof pTry;
- };
- export = pTry;
|