You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Determines whether the parameter value SHOULD allow reserved characters, as defined by RFC3986 `:/?#[]@!$&'()*+,;=` to be included without percent-encoding. The default value is `false`. This property SHALL be ignored if the request body media type is not `application/x-www-form-urlencoded` or `multipart/form-data`. If a value is explicitly defined, then the value of `contentType` (implicit or explicit) SHALL be ignored.
@@ -124,7 +124,7 @@ interface IRResponseObject {
124
124
schema: IRSchemaObject;
125
125
}
126
126
127
-
interfaceIRSchemaObject
127
+
exportinterfaceIRSchemaObject
128
128
extends
129
129
Pick<
130
130
JsonSchemaDraft2020_12,
@@ -221,11 +221,12 @@ interface IRSchemaObject
221
221
222
222
typeIRSecurityObject=SecuritySchemeObject;
223
223
224
-
typeIRServerObject=ServerObject;
224
+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type -- Interface rather than type alias avoids TS4023 errors when bundled dist is consumed by tsgo/TypeScript 7
0 commit comments