scathach-api
Version:
A NodeJS wrapper to interacts with Scathach bot
13 lines (12 loc) • 515 B
TypeScript
import { get, randomArray, ratelimit } from './utils';
export default function request(options: {
category: 'fgo' | 'genshin' | 'azur' | 'waifu' | 'arknights' | 'fire_emblem' | 'gfl' | 'hololive' | 'kancolle' | 'sex' | 'gelbooru' | 'r34' | 'safe' | 'animesex' | 'reaction';
tags?: string | string[];
apikey?: string;
limit?: number;
block?: string | string[];
page?: number;
useragent?: string;
img?: string;
}): Promise<unknown>;
export { ratelimit, get, randomArray };