/** * ------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. * See License in the project root for license information. * ------------------------------------------------------------------------------------------- */ import type { RequestOption } from "./requestOption.js"; /** * Request configuration * @template T Query parameters type */ export interface RequestConfiguration { /** * Request headers */ headers?: Record; /** * Request options */ options?: RequestOption[]; /** * Request query parameters */ queryParameters?: T; } //# sourceMappingURL=requestConfiguration.d.ts.map