@kubb/plugin-ts
Version:
TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.
36 lines (30 loc) • 647 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
export type ShowPetByIdPathParams = {
/**
* @description The id of the pet to retrieve
* @type string
*/
petId: string
/**
* @description The id of the pet to retrieve
* @type string
*/
testId: string
}
/**
* @description Expected response to a valid request
*/
export type ShowPetById200 = pet
/**
* @description unexpected error
*/
export type ShowPetByIdError = error
export type ShowPetByIdQueryResponse = showPetById200
export type ShowPetByIdQuery = {
Response: showPetById200
PathParams: showPetByIdPathParams
Errors: any
}