shiro.gg
Version:
An api wrapper for shiro.gg
75 lines (74 loc) • 1.3 kB
TypeScript
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 };