Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Aug 6, 2024
1 parent e66c61f commit b536bf2
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions types/lib/Server.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -987,9 +987,7 @@ declare class Server<
properties: {
type: {
anyOf: {
$ref: string /**
* @type {string[]}
*/;
$ref: string;
}[];
};
options: {
Expand All @@ -1007,11 +1005,10 @@ declare class Server<
description: string;
};
requestCert: {
/** @type {{ type: WebSocketServerConfiguration["type"], options: NonNullable<WebSocketServerConfiguration["options"]> }} */
type: string;
description: string;
cli: {
negatedDescription: string;
negatedDescription: string /** @type {ClientConfiguration} */;
};
};
ca: {
Expand Down Expand Up @@ -1130,7 +1127,7 @@ declare class Server<
}
)[];
};
/** @type {number | string} */ instanceof?: undefined;
instanceof?: undefined;
}
| {
type: string;
Expand All @@ -1149,6 +1146,7 @@ declare class Server<
anyOf: (
| {
type: string;
/** @type {number | string} */
items: {
anyOf: (
| {
Expand Down Expand Up @@ -1187,7 +1185,7 @@ declare class Server<
};
SetupExitSignals: {
type: string;
/** @type {string} */ description: string;
description: string;
link: string;
cli: {
exclude: boolean;
Expand Down Expand Up @@ -1297,7 +1295,7 @@ declare class Server<
}
)[];
description: string;
link: string;
/** @type {MultiCompiler} */ link: string;
};
};
};
Expand Down Expand Up @@ -1330,6 +1328,7 @@ declare class Server<
exclude: boolean;
};
type: string;
/** @type {string} */
properties: {
paths: {
anyOf: (
Expand Down Expand Up @@ -1404,7 +1403,6 @@ declare class Server<
options: {
type: string;
additionalProperties: boolean;
/** @type {NormalizedStatic} */
cli: {
exclude: boolean;
};
Expand Down

0 comments on commit b536bf2

Please sign in to comment.