File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11import type { ComponentsObject } from "./components" ;
22import type { InfoObject } from "./info" ;
33import type { PathsObject } from "./paths" ;
4- import { ServerObject } from "./server" ;
4+ import type { ServerObject } from "./server" ;
55import type { TagObject } from "./tag" ;
66
77type AtLeastOne < T , U = { [ K in keyof T ] : Pick < T , K > } > = Partial < T > & U [ keyof U ] ;
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ export type ServerObject = {
1111 * A map between a variable name and its value. The value is used for substitution in the server's URL template.
1212 */
1313 variables ?: Record < string , ServerVariableObject > ,
14- }
14+ } ;
1515
16- export type ServerVariableObject = {
16+ type ServerVariableObject = {
1717 /**
1818 * An enumeration of string values to be used if the substitution options are from a limited set. The array MUST NOT be empty.
1919 */
@@ -26,4 +26,4 @@ export type ServerVariableObject = {
2626 * An optional description for the server variable. CommonMark syntax MAY be used for rich text representation.
2727 */
2828 description : string ,
29- }
29+ } ;
You can’t perform that action at this time.
0 commit comments