tsoa-next / tsoa-next / Tsoa / Type
Type Alias: Type
ts
type Type =
| PrimitiveType
| ObjectsNoPropsType
| EnumType
| ArrayType
| FileType
| DateTimeType
| DateType
| BinaryType
| BufferType
| ByteType
| AnyType
| RefEnumType
| RefObjectType
| RefAliasType
| NestedObjectLiteralType
| UnionType
| IntersectionType
| TupleType;Defined in: packages/runtime/src/metadataGeneration/tsoa.ts:188
This is one of the possible objects that tsoa creates that helps the code store information about the type it found in the code.
