UNPKG

shiro.gg

Version:
75 lines (74 loc) 1.3 kB
import { ImageResult } from './../typings'; /** * Get a BDSM image or gif * * @returns {Promise} A bdsm image or gif * @example * ```js * shiro.bdsm().then(res => { * console.log(res) * }) * ``` * * @public */ declare const bdsm: () => Promise<ImageResult>; /** * Get a bondage image or gif * * @returns {Promise} A bondage image or gif * @example * ```js * shiro.bondage().then(res => { * console.log(res) * }) * ``` * * @public */ declare const bondage: () => Promise<ImageResult>; /** * Get a hentai image or gif * * @returns {Promise} A hentai image or gif * @example * ```js * shiro.hentai().then(res => { * console.log(res) * }) * ``` * * @public */ declare const hentai: () => Promise<ImageResult>; /** * Get a Thigh image * Thigh: Part of legs * * @returns {Promise} A thigh image or gif * @example * ```js * shiro.thigh().then(res => { * console.log(res) * }) * ``` * * @public */ declare const thigh: () => Promise<ImageResult>; /** * Get a Thigh image * Thigh: Part of legs * * @returns {Promise} A thigh image or gif * @example * ```js * shiro.thighs().then(res => { * console.log(res) * }) * ``` * * @public */ declare const thighs: () => Promise<ImageResult>; export { bdsm, bondage, hentai, thigh, thighs };