UNPKG

@kubb/plugin-ts

Version:

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

18 lines (14 loc) 313 B
/** * Generated by Kubb (https://kubb.dev/). * Do not edit manually. */ export const vehicleTypeEnum = { car: 'car', } as const export type VehicleTypeEnumKey = (typeof vehicleTypeEnum)[keyof typeof vehicleTypeEnum] export type vehicle = car & { /** * @type string */ type: VehicleTypeEnumKey }