UNPKG

@xct007/frieren-scraper

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