setup-bun/node_modules/@azure/ms-rest-js/es/lib/operationResponse.d.ts

15 lines
458 B
TypeScript
Raw Normal View History

2022-07-12 09:00:22 +02:00
import { Mapper } from "./serializer";
/**
* An OperationResponse that can be returned from an operation request for a single status code.
*/
export interface OperationResponse {
/**
* The mapper that will be used to deserialize the response headers.
*/
headersMapper?: Mapper;
/**
* The mapper that will be used to deserialize the response body.
*/
bodyMapper?: Mapper;
}
//# sourceMappingURL=operationResponse.d.ts.map