import { RequestOptions, RequestTransformer, ResponseTransformer } from "../types/request.js"; //#region src/rest/types.d.ts interface RestCommand<_Output extends object | unknown, _Schema> { (): RequestOptions; } interface RestClient { request(options: RestCommand): Promise; } interface RestConfig { credentials?: RequestCredentials; onRequest?: RequestTransformer; onResponse?: ResponseTransformer; } //#endregion export { RestClient, RestCommand, RestConfig }; //# sourceMappingURL=types.d.ts.map