@kubb/plugin-ts
Version:
TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.
26 lines (24 loc) • 504 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
export type demo = {
/**
* @type integer | undefined
*/
readonly attribute_readonly?: number
/**
* @description not required
* @type integer | undefined
*/
attribute_writeOnly?: number
/**
* @type integer | undefined
*/
readonly attribute_with_ref?: attributeReadonly
/**
* @description not required
* @type integer | undefined
*/
attribute_with_ref_readonly?: attributeWriteOnly
}