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
/
src
/
client
/
types
/
index.ts
11 lines
(9 loc)
•
266 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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
>; }