shiro.gg
Version:
An api wrapper for shiro.gg
93 lines (92 loc) • 1.76 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Thighs = exports.Thigh = exports.Hentai = exports.Bondage = exports.BDSM = void 0;
//Modules
const res_1 = require("./../resource/res");
/**
* Get a BDSM image or gif
*
* @returns {Promise} A bdsm image or gif
* @example
* ```js
* shiro.BDSM().then(res => {
* console.log(res)
* })
* ```
*
* @public
*/
const BDSM = async () => {
return (0, res_1.GetImage)('bondage', { nsfw: true });
};
exports.BDSM = BDSM;
/**
* Get a bondage image or gif
*
* @returns {Promise} A bondage image or gif
* @example
* ```js
* shiro.Bondage().then(res => {
* console.log(res)
* })
* ```
*
* @public
*/
const Bondage = async () => {
return (0, res_1.GetImage)('bondage', { nsfw: true });
};
exports.Bondage = Bondage;
/**
* Get a hentai image or gif
*
* @returns {Promise} A hentai image or gif
* @example
* ```js
* shiro.Hentai().then(res => {
* console.log(res)
* })
* ```
*
* @public
*/
const Hentai = async () => {
return (0, res_1.GetImage)('hentai', { nsfw: true });
};
exports.Hentai = Hentai;
/**
* 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
*/
const Thigh = async () => {
return (0, res_1.GetImage)('thigh', { nsfw: true });
};
exports.Thigh = Thigh;
/**
* 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
*/
const Thighs = async () => {
return (0, res_1.GetImage)('thighs', { nsfw: true });
};
exports.Thighs = Thighs;