UNPKG
habicli
Version:
latest (0.2.6)
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A CLI for [Habitica](https://habitica.com/)
github.com/rodcordeiro/habicli
rodcordeiro/habicli
habicli
/
bin
/
utils
/
api.d.ts
13 lines
(12 loc)
•
308 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
AxiosInstance
}
from
'axios'
;
import
{ iTag }
from
'./interfaces'
;
declare
const
api
:
AxiosInstance
;
export
declare
function
getTags
(
headers
: { [k:
string
]:
any
; }
):
Promise
<{
success
:
boolean
;
data
: iTag[];
userV
:
number
;
appVersion
:
string
; }>;
export
default
api;