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
/
rest-models
/
lottoevent.d.ts
12 lines
(11 loc)
•
306 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
BaseResponse
}
from
'./base'
;
export
declare
namespace
LottoEvent
{
interface
Response
extends
BaseResponse
{
lastwinner
:
LottoEvent
.
WinnerInfo
[];
list
:
LottoEvent
.
WinnerInfo
[]; }
interface
WinnerInfo
{
IGN
:
string
;
DATETIME
:
string
; } }