UNPKG
@4lch4/toggl-aid
Version:
latest (0.2.2)
0.2.2
0.2.1
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1
A wrapper library for interacting with the Toggl API.
github.com/4lch4/Toggl-Aid
4lch4/Toggl-Aid
@4lch4/toggl-aid
/
dist
/
index.d.ts
9 lines
(8 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
ReportsAPI
}
from
'./endpoints/Reports'
;
import
{
TogglAPI
}
from
'./endpoints/Toggl'
;
import
{
APIConfig
}
from
'./interfaces/APIConfig'
;
export
declare
class
TogglAid
{
togglAPI
:
TogglAPI
;
reportsAPI
:
ReportsAPI
;
constructor
(
configOpts
:
APIConfig
); }