import { RequestTransformer } from "../../types/request.js"; import { RestCommand } from "../types.js"; //#region src/rest/helpers/with-options.d.ts /** * Add arbitrary options to a fetch request * * @param getOptions * @param onRequest * * @returns */ declare function withOptions(getOptions: RestCommand, extraOptions: RequestTransformer | Partial): RestCommand; //#endregion export { withOptions }; //# sourceMappingURL=with-options.d.ts.map