ogame-bot-api
Version:
Api to create a bot for ogame
5 lines (4 loc) • 377 B
TypeScript
import { Page, ElementHandle } from "puppeteer";
export declare const openPannel: (page: Page, elem: ElementHandle<Element>, id: number) => Promise<ElementHandle<Element>>;
export declare const getPannel: (page: Page) => Promise<ElementHandle<Element>>;
export declare const pannelCreate: (page: Page, elem: ElementHandle<Element>, id: number, count: number) => Promise<void>;