UNPKG
@canguro/horse
Version:
latest (0.1.0)
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Deliver your data to wherever you wish, when you wish and how you wish.
gitlab.com/nir_patel/horse
@canguro/horse
/
definitions
/
HorseDestination.ts
12 lines
(10 loc)
•
283 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
HorseAction
}
from
'./HorseAction'
;
export
type
HorseDestination
= {
name
:
string
;
baseUrl
:
string
;
headers
?:
Record
<
string
,
string
|
number
|
boolean
>;
timeout
:
number
;
enabled
:
boolean
;
actions
:
HorseAction
[];
priority
?:
number
; };