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 };