mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-24 11:20:24 +08:00
15 lines
458 B
TypeScript
15 lines
458 B
TypeScript
|
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
|