From 7b6314f480d4f7a0932d6463e5341e21566a37c2 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 3 Oct 2025 11:52:01 +0200 Subject: Implement loading of unauthenticated radar GIS images --- worker-configuration.d.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'worker-configuration.d.ts') diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index 5d6133a..a7db243 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ // Generated by Wrangler by running `wrangler types` (hash: 86ac7c910eaa8ed87087e10bf93f5438) -// Runtime types generated with workerd@1.20250923.0 2025-09-24 nodejs_compat +// Runtime types generated with workerd@1.20251001.0 2025-09-24 nodejs_compat declare namespace Cloudflare { interface GlobalProps { mainModule: typeof import("./dist/_worker.js/index"); @@ -7465,6 +7465,19 @@ interface MediaError extends Error { readonly message: string; readonly stack?: string; } +declare module 'cloudflare:node' { + interface NodeStyleServer { + listen(...args: unknown[]): this; + address(): { + port?: number | null | undefined; + }; + } + export function httpServerHandler(port: number): ExportedHandler; + export function httpServerHandler(options: { + port: number; + }): ExportedHandler; + export function httpServerHandler(server: NodeStyleServer): ExportedHandler; +} type Params
= Record
;
type EventContext