UNPKG
@trycourier/courier-js
Version:
beta (2.0.9-beta)
latest (3.1.1)
3.1.1
3.1.0
3.0.0
2.1.3
2.1.1
2.1.0
2.0.12
2.0.11
2.0.10
2.0.9-beta
2.0.8-beta
2.0.7-beta
2.0.6-beta
2.0.4-beta
2.0.3-beta
2.0.2-beta
2.0.1-beta
2.0.0-beta
1.4.2
1.3.0
1.2.0
1.0.1
1.0.0
A browser-safe API wrapper
@trycourier/courier-js
/
dist
/
types
/
courier-api-urls.d.ts
12 lines
(11 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
CourierApiUrls
{
courier
: {
rest
:
string
;
graphql
:
string
; };
inbox
: {
graphql
:
string
;
webSocket
:
string
; }; }
export
declare
const
getCourierApiUrls
:
(
urls
?:
CourierApiUrls
) =>
CourierApiUrls
;