@@ -2989,7 +2989,7 @@ import type { ModelWithString } from './ModelWithString';
2989
2989
/**
2990
2990
* This is a model that extends another model
2991
2991
*/
2992
- export type ModelThatExtends = ( & ModelWithString & {
2992
+ export type ModelThatExtends = (ModelWithString & {
2993
2993
propExtendsA?: string,
2994
2994
propExtendsB?: ModelWithString,
2995
2995
});"
@@ -3006,7 +3006,7 @@ import type { ModelWithString } from './ModelWithString';
3006
3006
/**
3007
3007
* This is a model that extends another model
3008
3008
*/
3009
- export type ModelThatExtendsExtends = ( & ModelWithString & ModelThatExtends & {
3009
+ export type ModelThatExtendsExtends = (ModelWithString & ModelThatExtends & {
3010
3010
propExtendsC?: string,
3011
3011
propExtendsD?: ModelWithString,
3012
3012
});"
@@ -3025,7 +3025,7 @@ import type { ModelWithEnum } from './ModelWithEnum';
3025
3025
* This is a model with one property with a 'all of' relationship
3026
3026
*/
3027
3027
export interface ModelWithAllOfAndNullable {
3028
- propA?: ( & {
3028
+ propA?: ({
3029
3029
boolean?: boolean,
3030
3030
} & ModelWithEnum & ModelWithArray & ModelWithDictionary) | null;
3031
3031
}
@@ -3046,7 +3046,7 @@ import type { ModelWithString } from './ModelWithString';
3046
3046
* This is a model with one property with a 'any of' relationship
3047
3047
*/
3048
3048
export interface ModelWithAnyOf {
3049
- propA?: ( | ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
3049
+ propA?: (ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
3050
3050
}
3051
3051
"
3052
3052
`;
@@ -3064,7 +3064,7 @@ import type { ModelWithEnum } from './ModelWithEnum';
3064
3064
* This is a model with one property with a 'any of' relationship
3065
3065
*/
3066
3066
export interface ModelWithAnyOfAndNullable {
3067
- propA?: ( | {
3067
+ propA?: ({
3068
3068
boolean?: boolean,
3069
3069
} | ModelWithEnum | ModelWithArray | ModelWithDictionary) | null;
3070
3070
}
@@ -3329,7 +3329,7 @@ import type { ModelWithString } from './ModelWithString';
3329
3329
* This is a model with one property with a 'one of' relationship
3330
3330
*/
3331
3331
export interface ModelWithOneOf {
3332
- propA?: ( | ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
3332
+ propA?: (ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
3333
3333
}
3334
3334
"
3335
3335
`;
@@ -3347,7 +3347,7 @@ import type { ModelWithEnum } from './ModelWithEnum';
3347
3347
* This is a model with one property with a 'one of' relationship
3348
3348
*/
3349
3349
export interface ModelWithOneOfAndNullable {
3350
- propA?: ( | {
3350
+ propA?: ({
3351
3351
boolean?: boolean,
3352
3352
} | ModelWithEnum | ModelWithArray | ModelWithDictionary) | null;
3353
3353
}
@@ -4438,7 +4438,7 @@ export class ComplexService {
4438
4438
readonly type: 'Monkey' | 'Horse' | 'Bird',
4439
4439
listOfModels?: Array<ModelWithString> | null,
4440
4440
listOfStrings?: Array<string> | null,
4441
- parameters: ( | ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary),
4441
+ parameters: (ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary),
4442
4442
readonly user?: {
4443
4443
readonly id?: number,
4444
4444
readonly name?: string | null,
0 commit comments