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
/
updates-module.d.ts
6 lines
(5 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
BaseApiModule
}
from
'./base-module'
;
import
{
UpdateInfo
}
from
'../rest-models'
;
export
declare
class
UpdatesApiModule
extends
BaseApiModule
{
getUpdateInfo
(
start
?:
number
,
end
?:
number
):
Promise
<
UpdateInfo
[] |
undefined
>; }