r34-module
Version:
A module to Manupilated booru sites API
50 lines (44 loc) • 1.53 kB
text/typescript
declare function r34_random({ gay_block }?: {
gay_block?: boolean;
}): Promise<any[]>;
declare function r34_search({ search_tags, block_tags }: {
search_tags?: never[] | undefined;
block_tags?: never[] | undefined;
}): Promise<any[] | {
status: number;
} | undefined>;
declare const xbooru_search: ({ search_tags, block_tags }: {
search_tags?: never[] | undefined;
block_tags?: never[] | undefined;
}) => Promise<any[] | {
status: number;
}>;
declare const xbooru_random: ({ gay_block }?: {
gay_block?: boolean;
}) => Promise<any[]>;
declare const hypno_random: ({ gay_block }?: {
gay_block?: boolean;
}) => Promise<any[]>;
declare function hypno_search({ search_tags, block_tags }: {
search_tags?: never[] | undefined;
block_tags?: never[] | undefined;
}): Promise<any[] | {
status: number;
} | undefined>;
declare const safe_random: () => Promise<any[]>;
declare function safe_search({ search_tags, block_tags }: {
search_tags?: never[] | undefined;
block_tags?: never[] | undefined;
}): Promise<any[] | {
status: number;
} | undefined>;
declare const real_search: ({ search_tags, block_tags }: {
search_tags?: never[] | undefined;
block_tags?: never[] | undefined;
}) => Promise<any[] | {
status: number;
}>;
declare const real_random: ({ gay_block }?: {
gay_block?: boolean;
}) => Promise<any[]>;
export { hypno_random, hypno_search, r34_random, r34_search, real_random, real_search, safe_random, safe_search, xbooru_random, xbooru_search };