UNPKG
splitwise
Version:
latest (2.0.0)
2.0.0
1.0.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.0
A TypeScript SDK for the Splitwise API.
github.com/keriwarr/splitwise
keriwarr/splitwise
splitwise
/
dist
/
esm
/
resources
/
currencies.js
10 lines
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
BaseResource
}
from
'./base.js'
;
export
class
Currencies
extends
BaseResource
{
async
list
(
overrides
) {
return
this
.
http
.
get
(
'/get_currencies'
, {
unwrapKey
:
'currencies'
, ...overrides, }); } }
//# sourceMappingURL=currencies.js.map