UNPKG
@cfwest/api-client
Version:
latest (0.1.0)
0.1.0
Unofficial CrossFire West ApiClient implementation.
github.com/cfna/cfwest-api
cfna/cfwest-api
@cfwest/api-client
/
dist
/
internal
/
api-modules
/
webshop-module.d.ts
6 lines
(5 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
BaseApiModule
}
from
'./base-module'
;
import
{
WebShopItem
,
WebshopFilter
}
from
'../rest-models'
;
export
declare
class
WebShopApiModule
extends
BaseApiModule
{
getWebShopItems
(
start
?:
number
,
end
?:
number
,
filterType
?:
WebshopFilter
):
Promise
<
WebShopItem
[] |
undefined
>; }