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 1
1
import type { ComponentsObject } from "./components" ;
2
2
import type { InfoObject } from "./info" ;
3
3
import type { PathsObject } from "./paths" ;
4
- import { ServerObject } from "./server" ;
4
+ import type { ServerObject } from "./server" ;
5
5
import type { TagObject } from "./tag" ;
6
6
7
7
type 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 = {
11
11
* A map between a variable name and its value. The value is used for substitution in the server's URL template.
12
12
*/
13
13
variables ?: Record < string , ServerVariableObject > ,
14
- }
14
+ } ;
15
15
16
- export type ServerVariableObject = {
16
+ type ServerVariableObject = {
17
17
/**
18
18
* An enumeration of string values to be used if the substitution options are from a limited set. The array MUST NOT be empty.
19
19
*/
@@ -26,4 +26,4 @@ export type ServerVariableObject = {
26
26
* An optional description for the server variable. CommonMark syntax MAY be used for rich text representation.
27
27
*/
28
28
description : string ,
29
- }
29
+ } ;
You can’t perform that action at this time.
0 commit comments