operationResponse.d.ts 458 B

123456789101112131415
  1. import { Mapper } from "./serializer";
  2. /**
  3. * An OperationResponse that can be returned from an operation request for a single status code.
  4. */
  5. export interface OperationResponse {
  6. /**
  7. * The mapper that will be used to deserialize the response headers.
  8. */
  9. headersMapper?: Mapper;
  10. /**
  11. * The mapper that will be used to deserialize the response body.
  12. */
  13. bodyMapper?: Mapper;
  14. }
  15. //# sourceMappingURL=operationResponse.d.ts.map