@kubb/plugin-ts
Version:
TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.
21 lines (17 loc) • 433 B
text/typescript
/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
export const enumArrayIdentifierEnum = {
NW: 'NW',
NE: 'NE',
SW: 'SW',
SE: 'SE',
} as const
export type EnumArrayIdentifierEnumKey = (typeof enumArrayIdentifierEnum)[keyof typeof enumArrayIdentifierEnum]
export type enumArray = {
/**
* @type array | undefined
*/
identifier?: [number, string, EnumArrayIdentifierEnumKey, ...unknown[]]
}