UNPKG

@kubb/plugin-ts

Version:
19 lines (17 loc) 309 B
/** * 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)[] }