UNPKG
siigo-api-node
Version:
latest (1.0.1)
1.0.1
1.0.0
A Node.js SDK for the Siigo API
github.com/saulmoralespa/siigo-api-php
saulmoralespa/siigo-api-node
siigo-api-node
/
src
/
types
/
siigo.ts
19 lines
(17 loc)
•
302 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export
interface
SiigoSDKOptions
{
/** * The username */
username
:
string
;
/** * The accessKey */
access_key
:
string
; }
export
interface
Token
{
access_token
:
string
;
expires_in
:
number
;
expires_at
?:
number
;
token_type
:
string
;
scope
:
string
; }