Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: update types
  • Loading branch information
snitin315 committed Dec 12, 2022
commit 681b82a628a19b667c7cad1abd827336c65b00bd
16 changes: 9 additions & 7 deletions types/lib/Server.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1291,18 +1291,17 @@ declare class Server {
enum: boolean[];
cli: {
negatedDescription: string;
exclude?: undefined;
};
$ref?: undefined;
}
| {
$ref: string;
enum?: undefined;
cli?: undefined /** @typedef {import("express").Request} Request */;
enum: string[];
cli: {
exclude: boolean;
negatedDescription?: undefined;
};
}
)[];
cli: {
description: string;
};
};
WebSocketServerFunction: {
instanceof: string;
Expand All @@ -1328,6 +1327,9 @@ declare class Server {
WebSocketServerString: {
type: string;
minLength: number;
cli: {
exclude: boolean;
};
};
};
additionalProperties: boolean;
Expand Down