From c8b4d6c0ee00dc49108f947e25d49a7d5672e30b Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Thu, 2 Jan 2025 22:06:23 +0000 Subject: [PATCH] Lint --- plugin/src/utils/retried-fetch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/utils/retried-fetch.ts b/plugin/src/utils/retried-fetch.ts index af4296a..484b8be 100644 --- a/plugin/src/utils/retried-fetch.ts +++ b/plugin/src/utils/retried-fetch.ts @@ -1,5 +1,5 @@ import * as fetchRetryFactory from "fetch-retry"; -import { RequestInitRetryParams } from "fetch-retry"; +import type { RequestInitRetryParams } from "fetch-retry"; import { Logger } from "src/tracing/logger"; const fetchWithRetry = fetchRetryFactory.default(fetch);