Skip to content

Commit a824b07

Browse files
fix: remove declare modifier from ambient namespace in index.d.ts (#1254)
* Initial plan * fix: remove declare modifier in ambient namespace context in index.d.ts Co-authored-by: uNetworkingAB <110806833+uNetworkingAB@users.noreply.github.com> Agent-Logs-Url: https://github.com/uNetworking/uWebSockets.js/sessions/9f94a53f-390c-4776-86e8-a6cb39afefcf --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: uNetworkingAB <110806833+uNetworkingAB@users.noreply.github.com>
1 parent f7ddbb9 commit a824b07

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ export var DEDICATED_DECOMPRESSOR: CompressOptions;
459459
*/
460460
export namespace EnvironmentVariables {
461461
/** Maximum total byte size of HTTP request headers. This is a runtime env variable. Default: 4096. */
462-
declare const UWS_HTTP_MAX_HEADERS_SIZE: string | undefined;
462+
const UWS_HTTP_MAX_HEADERS_SIZE: string | undefined;
463463
/** Maximum number of HTTP request headers. This is a compile-time define, not a runtime env variable. Default: 100. */
464-
declare const UWS_HTTP_MAX_HEADERS_COUNT: string | undefined;
464+
const UWS_HTTP_MAX_HEADERS_COUNT: string | undefined;
465465
}

0 commit comments

Comments
 (0)