UNPKG
recall_sdk
Version:
latest (2.0.0)
2.0.0
1.5.0
1.4.0
1.3.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.0
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Node js sdk for the recall ai api
github.com/sam-ayo/recall_sdk
sam-ayo/recall_sdk
recall_sdk
/
dist
/
try-catch-wrapper.d.ts
7 lines
(6 loc)
•
219 B
TypeScript
View Raw
1
2
3
4
5
6
7
interface
RecallError
{
error
:
any
;
status
:
number
; }
declare
const
recallRequestTryCatchWrapper
: <T>
(
func
: () =>
Promise
<
any
>
) =>
Promise
<T |
RecallError
>;
export
{ recallRequestTryCatchWrapper,
RecallError
};