import { Page } from 'puppeteer'; import { ALL_RESEARCH, ResearchList, ResearchType } from '../types'; import { loadBuildings } from './building'; export const loadResearch = async (page: Page): Promise => { return loadBuildings(page, ALL_RESEARCH); };