UNPKG

@xct007/frieren-scraper

Version:
6 lines (5 loc) 324 B
import { errorHandling } from "../Interface"; import { ApkmodyIoSearchResults, ApkmodyIoDetailResult } from "../Types"; declare function search(query: string): Promise<ApkmodyIoSearchResults[] | errorHandling>; declare function detail(url: string): Promise<ApkmodyIoDetailResult | errorHandling>; export { search, detail };