UNPKG

ogame-bot-api

Version:
7 lines (6 loc) 285 B
import { Page } from 'puppeteer'; import { ALL_RESEARCH, ResearchList, ResearchType } from '../types'; import { loadBuildings } from './building'; export const loadResearch = async (page: Page): Promise<ResearchList> => { return loadBuildings<ResearchType>(page, ALL_RESEARCH); };