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