@kubb/plugin-ts
Version:
Generator plugin-ts
44 lines (37 loc) • 705 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
/**
* @description Null response
*/
export type CreatePets201 = error & {
/**
* @type object | undefined
*/
name?: errorCode
}
/**
* @description Accepted response
*/
export type CreatePets202 = any
/**
* @description unexpected error
*/
export type CreatePetsError = error
export type CreatePetsMutationRequest = {
/**
* @type string
*/
name: string
/**
* @type string
*/
tag: string
}
export type CreatePetsMutationResponse = createPets201 | createPets202
export type createPetsMutation = {
Response: createPets201 | createPets202
Request: createPetsMutationRequest
Errors: any
}