@kubb/plugin-ts
Version:
TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.
24 lines (22 loc) • 339 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
export type pet = {
/**
* @type integer, int64
*/
id: number
/**
* @type string
*/
name: string
/**
* @type string | undefined
*/
tag?: string | undefined
/**
* @type object | undefined
*/
category?: category | undefined
}