UNPKG
tyntec-sdk
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
TypeScript SDK for Tyntec Conversations API V3
github.com/dr-aiuta/tyntecsdk
tyntec-sdk
/
dist
/
client
/
types
/
index.d.ts
13 lines
(12 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
type
TyntecConfig
= {
apiKey
:
string
;
baseUrl
?:
string
;
idWhatsAppAccount
?:
string
;
retry
?: {
attempts
:
number
;
backoffMs
:
number
; }; };
export
interface
RequestHttp
{
send
:
(
method
:
'GET'
|
'POST'
,
endpoint
:
string
,
body
?:
unknown
) =>
Promise
<
unknown
>; }