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 |
|
4 | import { RequestOptionsBase } from "./webResource";
|
5 |
|
6 | /**
|
7 | * A collection of properties that apply to a single invocation of an operation.
|
8 | */
|
9 | export interface OperationArguments {
|
10 | /**
|
11 | * The parameters that were passed to the operation method.
|
12 | */
|
13 | [parameterName: string]: any;
|
14 |
|
15 | /**
|
16 | * The optional arugments that are provided to an operation.
|
17 | */
|
18 | options?: RequestOptionsBase;
|
19 | }
|