kiutils
Version:
🎑 (Library) an Javascript library that provide various utilities, including Image manipulation tools, Discord-related utilities, and a logger.
17 lines • 488 B
TypeScript
export declare enum WaifuType {
SFW = "sfw",
NSFW = "nsfw"
}
/**
* @typedef {Object} WaifuData
* @property {string[]} categoryNsfw - The NSFW categories
* @property {string[]} categorySfw - The SFW categories
* @property {string} type - The type of the image
* @example
* const { waifu } = require("kiutils")
* waifu("sfw").then(console.log)
*
* // => "https://..."
*/
export declare function waifu(type?: WaifuType): Promise<string>;
//# sourceMappingURL=waifu.d.ts.map