From 8386d525be365cc3d68d959d74908fcd03ac888f Mon Sep 17 00:00:00 2001 From: pheralb Date: Fri, 27 Sep 2024 13:29:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Add=20``type``=20import?= =?UTF-8?q?=20to=20``ThemeOptions``?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api-routes/src/utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api-routes/src/utils.ts b/api-routes/src/utils.ts index 0d2a2de..d04fff5 100644 --- a/api-routes/src/utils.ts +++ b/api-routes/src/utils.ts @@ -1,4 +1,4 @@ -import { ThemeOptions } from '../../src/types/svg'; +import type { ThemeOptions } from '../../src/types/svg'; const fullUrl = 'https://svgl.app'; @@ -13,3 +13,4 @@ export const addFullUrl = (value: string | ThemeOptions): string | ThemeOptions } return value; }; +