UNPKG
@nangohq/types
Version:
latest (0.63.0)
0.63.0
0.62.1
0.62.0
0.61.3
0.61.2
0.61.1
0.61.0
0.60.5
0.60.4
0.60.3
0.60.2
0.60.1
0.60.0
0.59.13
0.59.12
0.59.11
0.59.10
0.59.9
0.59.8
0.59.7
0.59.6
0.59.5
0.59.4
0.59.3
0.59.2
0.59.1
0.59.0
0.58.7
0.58.6
0.58.5
0.58.4
0.58.3
0.58.2
0.58.1
0.58.0
0.57.6
0.57.5
0.57.4
0.57.3
0.57.2
0.57.1
0.57.0
0.56.4
0.56.3
0.56.2
0.56.1
0.56.0
0.55.0
0.54.0
0.53.2
0.53.1
0.53.0
0.52.5
0.52.4
0.52.3
0.52.2
0.52.1
0.52.0
0.51.0
0.50.0
0.49.0
0.48.4
0.48.3
0.48.2
0.48.1
0.48.0
0.47.1
0.47.0
0.46.1
0.46.0
0.45.1
0.45.0
0.44.0
0.43.0
0.42.22
0.42.21
0.42.20
0.42.19
0.42.18
0.42.17
0.42.16
0.42.15
0.42.14
0.42.13
0.42.12
0.42.11
0.42.10
0.42.9
0.42.8
0.42.7
0.42.6
0.42.5
0.42.4
0.42.3
0.42.2
0.42.1
0.42.0
0.41.1
0.41.0
0.40.10
0.40.9
0.40.8
0.40.7
0.40.6
0.40.5
0.40.4
0.40.3
0.40.2
0.40.1
0.40.0
0.39.33
0.39.32
0.39.31
0.39.30
0.39.29
0.39.28
0.39.27
0.39.26
0.39.25
0.39.24
0.39.23
0.39.22
0.39.21
0.39.18
Types used in Nango applications
github.com/NangoHQ/nango
NangoHQ/nango
@nangohq/types
/
dist
/
action
/
api.d.ts
14 lines
(13 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
type
{
Endpoint
}
from
'../api'
;
export
interface
AsyncActionResponse
{
id
:
string
;
statusUrl
:
string
; }
export
type
GetAsyncActionResult
=
Endpoint
<{
Method
:
'GET'
;
Path
:
`/action/:id`
;
Params
: {
id
:
string
; };
Success
:
Record
<
string
,
any
>; }>;