UNPKG
intercom-client
Version:
alpha (6.0.0-alpha1)
beta (6.0.0-beta.3)
latest (6.4.0)
6.4.0
6.3.0
6.2.0
6.1.1
6.1.0
6.0.0
6.0.0-beta.3
6.0.0-beta.2
6.0.0-alpha1
6.0.0-alpha
5.0.0
4.0.0
3.2.1
3.2.0
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
3.0.0-2
3.0.0-0
2.11.2
2.11.0
2.10.6
2.10.5
2.10.4
2.10.3
2.10.2
2.10.1
2.10.0
2.9.4
2.9.3
2.9.2
2.9.1
2.8.9
2.8.8
2.8.7
2.8.6
2.8.5
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
2.7.0
2.6.0
2.5.0
2.4.0
2.2.0
2.1.0
2.0.0
1.1.4
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.2
Official Node bindings to the Intercom API
github.com/intercom/intercom-node
intercom/intercom-node
intercom-client
/
core
/
fetcher
/
APIResponse.d.ts
11 lines
(10 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
APIResponse
<
Success
,
Failure
> =
SuccessfulResponse
<
Success
> |
FailedResponse
<
Failure
>;
export
interface
SuccessfulResponse
<T> {
ok
:
true
;
body
: T;
headers
?:
Record
<
string
,
any
>; }
export
interface
FailedResponse
<T> {
ok
:
false
;
error
: T; }