trace.moe.ts
Version:
An API wrapper for https://trace.moe with typings
11 lines (10 loc) • 483 B
TypeScript
import { SearchParameters } from "../structures/SearchParameters";
export declare class Utils {
/**
* Handles optional parameters for searching anime.
* @param {string} baseURL The base URL to use for the search.
* @param {string} imageURL The base URL to use for the image.
* @param {SearchParameters} params The parameters to use for the search.
*/
handleOptionalParameters(baseURL: string, imageURL?: string, params?: SearchParameters): string;
}