зеркало из https://github.com/Azure/ms-rest-js.git
20 строки
625 B
TypeScript
20 строки
625 B
TypeScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
import { HttpHeaders } from "./httpHeaders";
|
|
|
|
/**
|
|
* A collection of properties that apply to a single invocation of an operation.
|
|
*/
|
|
export interface OperationArguments {
|
|
/**
|
|
* The arguments that were passed to the operation method.
|
|
*/
|
|
arguments: { [parameterName: string]: any };
|
|
|
|
/**
|
|
* Headers that will be applied to this operation's HTTP request after the operation method's
|
|
* header arguments are added.
|
|
*/
|
|
customHeaders?: HttpHeaders;
|
|
} |