UNPKG

@kubb/plugin-ts

Version:

TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.

31 lines (25 loc) 547 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ export type ListPetsQueryParams = { /** * @description How many items to return at one time (max 100) * @type string | undefined */ limit?: string } /** * @description A paged array of pets */ export type ListPets200 = pets /** * @description unexpected error */ export type ListPetsError = error export type ListPetsQueryResponse = listPets200 export type ListPetsQuery = { Response: listPets200 QueryParams: listPetsQueryParams Errors: any }