booru
Version:
Search (and do other things) on a bunch of different boorus!
17 lines • 419 B
TypeScript
/**
* @packageDocumentation
* @module Structures
*/
/**
* Represents the api of a {@link Site}
* <p>Each property is a path on the {@link Site}
*/
export default interface SiteApi {
/** The path to search for posts */
search: string;
/** The path to view a post by ID */
postView: string;
/** The path to retrieve a list of tags */
tagList?: string;
}
//# sourceMappingURL=SiteApi.d.ts.map