UNPKG

trello-for-wolves

Version:
14 lines (13 loc) 574 B
import { TypedFetch } from "../typeDefs"; import { BaseResource } from "./BaseResource"; /** * The batch endpoint allows you to make multiple GET requests to the Trello * API in a single request. By batching GET requests together, you can reduce * the volume of calls you are making to the API and more easily stay within * your API rate limit. The batch endpoint can not be called recursively; * requests containing the batch url will be ignored. * @class */ export declare class Batch extends BaseResource { makeRequests(urls: string[]): TypedFetch<unknown>; }