From e880cc7c3743d5a3f84d21e0446148faa5f10299 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 10 Sep 2023 17:30:33 -0400 Subject: [PATCH] Remove ts-ignore from request.cf --- src/worker.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/worker.ts b/src/worker.ts index 73d6e49..4190cb3 100644 --- a/src/worker.ts +++ b/src/worker.ts @@ -349,14 +349,8 @@ const versionRequest = async (request: IRequest) => { request.headers.get('x-real-ip') ?? request.headers.get('cf-connecting-ip') ?? 'Unknown IP', - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.city despite it being a real property city: request.cf?.city ?? 'Unknown City', - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.country / region despite it being a real property region: request.cf?.region ?? request.cf?.country ?? 'Unknown Region', - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.country despite it being a real property country: request.cf?.country ?? 'Unknown Country', asn: `AS${request.cf?.asn ?? '??'} (${ request.cf?.asOrganization ?? 'Unknown ASN'