From e359a5686f0f2d174c55150a35551ed19f83af9f Mon Sep 17 00:00:00 2001 From: Tobias Bocanegra Date: Wed, 26 Nov 2025 18:38:53 +0100 Subject: [PATCH] chore: use correct class --- src/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.d.ts b/src/index.d.ts index 53b94366..849dc0f8 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -9,7 +9,7 @@ * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ -import {KVNamespace, R2Bucket, Service} from "@cloudflare/workers-types"; +import { KVNamespace, R2Bucket, Fetcher } from "@cloudflare/workers-types"; export interface Env { S3_DEF_URL: string; @@ -23,5 +23,5 @@ export interface Env { DA_JOBS: KVNamespace, AEM_CONTENT: R2Bucket; - dacollab: Service; + dacollab: Fetcher; }