Stonepilot56
CDCloudflare Developers
•Created by Stonepilot56 on 9/25/2024 in #workers-help
Cannot find close to nothing: console, fetch, Response, HTMLRewriter etc…
It turns out that now you have to import them, so the problem was solved by adding
import { HTMLRewriter, Request, Response, fetch } from "./workers-types.js";
import { console } from "./workers-types.js";
at the top.
EDIT: It fixed by itself, without usage of aforementioned imports :\3 replies