UNPKG

booru

Version:

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

14 lines 399 B
/** * @packageDocumentation * @module Structures */ /** * Just an interface for {@link Booru}'s tag list params :) */ export default interface SearchParameters { /** The limit on *max* tags to show, you might get less tags than this */ limit?: number | undefined; /** Which page of results to fetch */ page?: number | undefined; } //# sourceMappingURL=TagListParameters.d.ts.map