UNPKG
ogame-bot-api
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.1.0
Api to create a bot for ogame
github.com/noeRls/ogame-bot-api
noeRls/ogame-bot-api
ogame-bot-api
/
build
/
Api
/
game
/
parsing
/
ship.d.ts
5 lines
(4 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
import
{
Page
}
from
'puppeteer'
;
import
{
ShipList
,
Ship
}
from
'../types'
;
export
declare
const
loadShips
:
(
page
:
Page
) =>
Promise
<
ShipList
>;
export
declare
const
createShipFromPannel
:
(
page
:
Page
,
ship
:
Ship
,
count
:
number
) =>
Promise
<
void
>;