operationArguments.d.ts 458 B

123456789101112131415
  1. import { RequestOptionsBase } from "./webResource";
  2. /**
  3. * A collection of properties that apply to a single invocation of an operation.
  4. */
  5. export interface OperationArguments {
  6. /**
  7. * The parameters that were passed to the operation method.
  8. */
  9. [parameterName: string]: any;
  10. /**
  11. * The optional arugments that are provided to an operation.
  12. */
  13. options?: RequestOptionsBase;
  14. }
  15. //# sourceMappingURL=operationArguments.d.ts.map