UNPKG

@xct007/frieren-scraper

Version:
7 lines (6 loc) 362 B
import { errorHandling } from "../Interface"; import { AnoboyLatest, AnoboyDetail } from "../Types"; declare function latest(): Promise<AnoboyLatest[] | errorHandling>; declare function search(query: string): Promise<AnoboyLatest[] | errorHandling>; declare function detail(url: string): Promise<AnoboyDetail | errorHandling>; export { latest, search, detail };