operationArguments.ts 553 B

12345678910111213141516171819
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. import { RequestOptionsBase } from "./webResource";
  4. /**
  5. * A collection of properties that apply to a single invocation of an operation.
  6. */
  7. export interface OperationArguments {
  8. /**
  9. * The parameters that were passed to the operation method.
  10. */
  11. [parameterName: string]: any;
  12. /**
  13. * The optional arugments that are provided to an operation.
  14. */
  15. options?: RequestOptionsBase;
  16. }