wangzhibo
2026-05-09 53418655c061ac26f66058253f39200aced1ab1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { OperationArguments, OperationParameter, OperationRequest, OperationRequestInfo } from "./interfaces.js";
/**
 * @internal
 * Retrieves the value to use for a given operation argument
 * @param operationArguments - The arguments passed from the generated client
 * @param parameter - The parameter description
 * @param fallbackObject - If something isn't found in the arguments bag, look here.
 *  Generally used to look at the service client properties.
 */
export declare function getOperationArgumentValueFromParameter(operationArguments: OperationArguments, parameter: OperationParameter, fallbackObject?: {
    [parameterName: string]: any;
}): any;
export declare function getOperationRequestInfo(request: OperationRequest): OperationRequestInfo;
//# sourceMappingURL=operationHelpers.d.ts.map