🔧 UPDATE: Enhanced wrangler.jsonc with routing configuration for leakhub.ai and added crons module import in api.d.ts for improved functionality.

This commit is contained in:
joaodunas
2026-01-07 21:31:55 +00:00
parent 1d860b9510
commit 7a0d1e5e37
2 changed files with 8 additions and 0 deletions
+2
View File
@@ -9,6 +9,7 @@
*/
import type * as auth from "../auth.js";
import type * as crons from "../crons.js";
import type * as github from "../github.js";
import type * as http from "../http.js";
import type * as leaderboard from "../leaderboard.js";
@@ -24,6 +25,7 @@ import type {
declare const fullApi: ApiFromModules<{
auth: typeof auth;
crons: typeof crons;
github: typeof github;
http: typeof http;
leaderboard: typeof leaderboard;