UNPKG

@kubb/plugin-ts

Version:

TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.

16 lines (14 loc) 215 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ export type catDog = | (cat & { type: 'Cat' }) | (dog & { type: 'Dog' }) | (dog & { type: 'Bulldog' })