@kubb/plugin-ts
Version:
Generator plugin-ts
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)[]
}