UNPKG

zyscr

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