@kubb/plugin-ts
Version:
TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.
19 lines (17 loc) • 309 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
/**
* @description A project is an analysis project. It has a name, an id, and has a dataset
*/
export type petstore = {
/**
* @type integer
*/
id: number
/**
* @type array | undefined
*/
pets?: (cat | dog)[]
}