UNPKG

booru

Version:

Search (and do other things) on a bunch of different boorus!

19 lines 523 B
/** * @packageDocumentation * @module Boorus */ import type SearchParameters from '../structures/SearchParameters'; import type SearchResults from '../structures/SearchResults'; import Booru from './Booru'; /** * A class designed for Derpibooru * >:( * @private * @extends Booru * @inheritDoc */ export default class Derpibooru extends Booru { /** @inheritDoc */ search(tags: string[] | string, { limit, random, page }?: SearchParameters): Promise<SearchResults>; } //# sourceMappingURL=Derpibooru.d.ts.map