#!/usr/bin/env node type NameLike = string | (() => string); interface Res { name: string; code: number; thumbnail: string; url: string; platform: "https://zoro.to"; } interface NotFound { code: number; message: string; } declare function getAnimeFromZoro(animeName: NameLike): Promise; declare function animeSearch(animeName: NameLike): Promise; export default animeSearch; export { getAnimeFromZoro, Res, NameLike, NotFound };