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;