UNPKG

458 BTypeScriptView Raw
1import { Mapper } from "./serializer";
2/**
3 * An OperationResponse that can be returned from an operation request for a single status code.
4 */
5export 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
\No newline at end of file